16 lines
338 B
C#
16 lines
338 B
C#
|
using System.Windows;
|
|||
|
using WPF_23_MVVMRelayCommand.ViewModel;
|
|||
|
|
|||
|
namespace WPF_23_MVVMRelayCommand;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Interaction logic for MainWindow.xaml
|
|||
|
/// </summary>
|
|||
|
public partial class MainWindow : Window
|
|||
|
{
|
|||
|
public MainWindow()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
DataContext = new MainWindowViewModel();
|
|||
|
}
|
|||
|
}
|