Example #1
0
 public FormMain(string deckPrefix, string deckListsPageName)
 {
     InitializeComponent();
     _deckPrefix                   = deckPrefix;
     _deckListsPageName            = deckListsPageName;
     _colorLegend                  = null;
     listBoxCardList.DisplayMember = "Name";
     SetCardCountText(0);
 }
Example #2
0
 private void linkLabelColorLegend_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     if (_colorLegend == null)
     {
         _colorLegend             = new FormColorLegend(validationColors);
         _colorLegend.FormClosed += ColorLegend_FormClosed;
         _colorLegend.Show(this);
     }
     else
     {
         _colorLegend.Close();
     }
 }
Example #3
0
 private void ColorLegend_FormClosed(object sender, FormClosedEventArgs e)
 {
     _colorLegend = null;
 }