You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
373 B
C#
18 lines
373 B
C#
using Admin.Core.Wpf.ViewModel;
|
|
using System.Windows;
|
|
|
|
namespace Admin.Core.Wpf.View
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for MainWindow.xaml
|
|
/// </summary>
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
this.DataContext = new MainWindowViewModel();
|
|
}
|
|
}
|
|
}
|