Interaction logic for RootWindow.xaml
Inheritance: DXRibbonWindow
コード例 #1
0
ファイル: App.xaml.cs プロジェクト: Xarlot/DXVcs2Git
 void RunWindow()
 {
     MainWindow = new RootWindow();
     MainWindow.WindowState = StartupOptions.State;
     if (StartupOptions.Hidden)
         return;
     MainWindow.Show();
 }
コード例 #2
0
ファイル: App.xaml.cs プロジェクト: radtek/DXVcs2Git
 void RunWindow()
 {
     MainWindow             = new RootWindow();
     MainWindow.WindowState = StartupOptions.State;
     if (StartupOptions.Hidden)
     {
         return;
     }
     MainWindow.Show();
 }