private void FormMainScreen_Shown(object sender, EventArgs e)
 {
     if (GuiSettings.GetSettingBoolean(GuiSettings.SHOW_NEWS_KEY))
     {
         using (var news = new NewsDialog())
             news.ShowDialog();
     }
 }
Beispiel #2
0
 private static void Postfix()
 {
     NewsDialog.TryShow();
 }
 private void newsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     using (var news = new NewsDialog())
         news.ShowDialog();
 }