コード例 #1
0
        private void updateMother_Click(object sender, RoutedEventArgs e)
        {
            mothersButtonsClicks();
            Window UpdateMotherWindow = new UpdateMotherWindow();

            UpdateMotherWindow.Show();
        }
        private void UpdateMotherBtn_Click(object sender, RoutedEventArgs e)
        {
            var window = new UpdateMotherWindow(MotherOption);

            window.Show();
            window.Closed += OnMotherUpdateWindowChanged;
        }
コード例 #3
0
ファイル: MainWindow.xaml.cs プロジェクト: ReutAttar/Project
        private void UpdateMotherButton_Click(object sender, RoutedEventArgs e)
        {
            Window updatemotherwindow = new UpdateMotherWindow();

            updatemotherwindow.ShowDialog();
        }