Inheritance: INotifyPropertyChanged
Beispiel #1
0
        public MainWindow()
        {
            InitializeComponent();

            Model = new Model(filePath);

            this.DataContext = Model;

            this.CommandBindings.Add(new CommandBinding(ApplicationCommands.Open, OpenCommand_Executed));
        }