Exemplo n.º 1
0
        private void TestButon_Click(object sender, RoutedEventArgs e)
        {
            EditWindowVM ewvm = mwvm.StartEdit();
            EditWindow   edit = new EditWindow(ewvm);

            edit.Show();

            // EditWindowVM ewvm = mwvm.StartEdit();
            //EditTableWindow editWin = new EditTableWindow(ewvm);
            //editWin.Show();
        }
Exemplo n.º 2
0
 public EditWindow(EditWindowVM model)
 {
     this.model = model;
     InitializeComponent();
     AddDivisionControl.Model = model;
 }
Exemplo n.º 3
0
 public EditTableWindow(EditWindowVM ewvm)
 {
     this.ewvm = ewvm;
     InitializeComponent();
 }