22 lines
555 B
C#
22 lines
555 B
C#
using Estara.ViewModels;
|
|
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace Estara.Views;
|
|
|
|
// TODO: Change the grid as appropriate for your app. Adjust the column definitions on DataGridPage.xaml.
|
|
// For more details, see the documentation at https://docs.microsoft.com/windows/communitytoolkit/controls/datagrid.
|
|
public sealed partial class DataGridPage : Page
|
|
{
|
|
public DataGridViewModel ViewModel
|
|
{
|
|
get;
|
|
}
|
|
|
|
public DataGridPage()
|
|
{
|
|
ViewModel = App.GetService<DataGridViewModel>();
|
|
InitializeComponent();
|
|
}
|
|
}
|