Пример #1
0
 private void CloseStartPage()
 {
     if (null != FormStartPage)
     {
         FormStartPage.Close();
     }
     FormStartPage = null;
 }
Пример #2
0
 public void ShowStartPage()
 {
     if (!IsWebSiteReachable || null == FormStartPage)
     {
         return;
     }
     FormStartPage.Url = new Uri(Settings.Default.UrlStartPage);
     FormStartPage.Show(dockPanel, DockState.Document);
 }