Example #1
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();
     }
 }