Пример #1
0
        void WindowMain_Activated(object sender, EventArgs e)
        {
            Activated -= new EventHandler(WindowMain_Activated);
            if (true/*!Rawr.Properties.GeneralSettings.Default.WelcomeScreenSeen*/)
            {
                ChildWindow window = new WelcomeWindow();
                window.Owner = this;
                window.ShowDialog();

                if (!Rawr.Properties.GeneralSettings.Default.HasSeenHelpWindow)
                {
                    MessageBox.Show(
@"Rawr has added a new feature, the Rawr Web Help Window. The Web Help Window is designed to provide fast access to common help topics.

In the Downloadable Version of Rawr (WPF), you will be provided with a mini-webbrowser which displays relevant topics as seen on our Documentation pages. In Silverlight, the online version of Rawr, you will be prompted with quick links to open the content in your browser. We are working to provide web content directly in here as well.

You will now be taken to this window to become familiar with it.",
                        "New Information!", MessageBoxButton.OK); Rawr.Properties.GeneralSettings.Default.HasSeenHelpWindow = true;
                    ChildWindow window2 = new WebHelp("WhereToStart", "");
                    window2.Owner = this;
                    window2.ShowDialog();
                }
            }
        }
Пример #2
0
 private void BT_GetHelp_Click(object sender, RoutedEventArgs e)
 {
     WebHelp webHelp = new WebHelp("BossHandler");
     webHelp.Show();
 }
Пример #3
0
        private void SubmitIssue_Click(object sender, RoutedEventArgs e)
        {
#if SILVERLIGHT
            WebHelp webHelp = new WebHelp("PostingGuidelines", "Before submitting an issue, please read and follow the Posting Guidelines. They can be found using the View Content in Browser link below.");
#else
            WebHelp webHelp = new WebHelp("PostingGuidelines");
#endif
            webHelp.Show();
        }
Пример #4
0
        private void BT_GetHelp_Click(object sender, RoutedEventArgs e)
        {
            WebHelp webHelp = new WebHelp("BossHandler");

            webHelp.Show();
        }
Пример #5
0
 private void Button_Click(object sender, RoutedEventArgs e)
 {
     WebHelp webHelp = new WebHelp("WhereToStart");
     webHelp.Show();
 }