Inheritance: System.Windows.Forms.Form
Beispiel #1
0
 private void OnClick_Hue(object sender, EventArgs e)
 {
     if ((showform == null) || (showform.IsDisposed))
     {
         if (customHue == 0)
         {
             showform = new HuePopUp(this, DefHue + 1);
         }
         else
         {
             showform = new HuePopUp(this, customHue - 1);
         }
         showform.TopMost = true;
         showform.Show();
     }
 }
 private void OnClick_Hue(object sender, EventArgs e)
 {
     if ((showform == null) || (showform.IsDisposed))
     {
         if (customHue == 0)
             showform = new HuePopUp(this, DefHue + 1);
         else
             showform = new HuePopUp(this, customHue - 1);
         showform.TopMost = true;
         showform.Show();
     }
 }