예제 #1
0
        private void OnLoaded(object sender, RoutedEventArgs e)
        {
            var dlg = new StartupDialog {
                Owner = this
            };

            dlg.ShowDialog();
        }
예제 #2
0
        /**
         * Method for show the startup dialog
         * Status: OK
         */
        private void MainWindow_LoadButtonClick(object sender, RoutedEventArgs e)
        {
            var dlg = new StartupDialog {
                Owner = this
            };

            dlg.ShowDialog();
        }
예제 #3
0
        public void LoadButtonClick(object sender, RoutedEventArgs e)
        {
            var dlg = new StartupDialog {
                Owner = this
            };

            dlg.ShowDialog();
        }
예제 #4
0
 /**
  * Method for OnLoaded event
  * Status: OK
  */
 private void MainWindow_OnLoaded(object sender, RoutedEventArgs e)
 {
     var dlg = new StartupDialog { Owner = this };
     dlg.ShowDialog();
 }
예제 #5
0
 public void LoadButtonClick(object sender, RoutedEventArgs e)
 {
     var dlg = new StartupDialog { Owner = this };
     dlg.ShowDialog();
 }