mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
24 lines
586 B
C#
24 lines
586 B
C#
using System.Windows;
|
|
|
|
using Bloxstrap.UI.ViewModels.About;
|
|
|
|
namespace Bloxstrap.UI.Elements.About.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for SupportersPage.xaml
|
|
/// </summary>
|
|
public partial class SupportersPage
|
|
{
|
|
private readonly SupportersViewModel _viewModel = new();
|
|
|
|
public SupportersPage()
|
|
{
|
|
DataContext = _viewModel;
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void UiPage_SizeChanged(object sender, SizeChangedEventArgs e)
|
|
=> _viewModel.WindowResizeEvent?.Invoke(sender, e);
|
|
}
|
|
}
|