Beispiel #1
0
        // Handles the "Help > About" menu item's Click event.
        private void AboutMenuItem_Click(object sender, RoutedEventArgs e)
        {
            string      localNamespace = this.GetType().Namespace;
            AboutDialog aboutDialog    = new AboutDialog();

            aboutDialog.SetCompanyUrl("http://www.gridprotectionalliance.org/");
            aboutDialog.SetCompanyLogo(AssemblyInfo.EntryAssembly.GetEmbeddedResource(localNamespace + ".Resources.HelpAboutLogo.png"));
            aboutDialog.SetCompanyDisclaimer(AssemblyInfo.EntryAssembly.GetEmbeddedResource(localNamespace + ".Resources.Disclaimer.txt"));
            aboutDialog.ShowDialog();
        }