コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: jerry27syd/WPFs
        private void AboutMenuItem_OnClick(object sender, RoutedEventArgs e)
        {
            var about = new AboutWindow();
            about.Title = UtilityManager.CodeManipulatorName;
            about.Owner = this;
            about.ShowDialog();

            //  Process.Start("http://www.productivable.com");
        }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: jerry27syd/WPFs
 private void LicenseMenuItem_OnClick(object sender, RoutedEventArgs e)
 {
     var aboutWindow = new AboutWindow();
     aboutWindow.Owner = this;
     aboutWindow.ShowDialog();
 }