コード例 #1
0
ファイル: MenuBar.xaml.cs プロジェクト: oxysoft/cairoshell
        private void InitCairoSettingsWindow(object sender, RoutedEventArgs e)
        {
            CairoSettingsWindow window = new CairoSettingsWindow();

            window.Show();
        }
コード例 #2
0
 /// <summary>
 /// Handles the Closing event of the window to save the settings.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">Arguments for the event.</param>
 private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
 {
     saveChanges();
     _instance = null;
 }
コード例 #3
0
ファイル: MenuBar.xaml.cs プロジェクト: 24500/cairoshell
 private void InitCairoSettingsWindow(object sender, RoutedEventArgs e)
 {
     CairoSettingsWindow window = new CairoSettingsWindow();
     window.Show();
 }