コード例 #1
0
        private void CommandBinding_Export(object sender, ExecutedRoutedEventArgs e)
        {
            if (!menuExport.IsEnabled)
            {
                return;
            }

            ExportWindow.Instance();
        }
コード例 #2
0
        public static void Instance()
        {
            ExportWindow NewForm = new ExportWindow();

            SessionCore.Instance.Windows.Show(NewForm);
        }
コード例 #3
0
 public static void Instance() {
     ExportWindow NewForm = new ExportWindow();
     SessionCore.Instance.Windows.Show(NewForm);
 }