Ejemplo n.º 1
0
 private void buttonColorBox_Click(object sender, EventArgs e)
 {
     try
     {
         MouseHook.stop();
         status = false;
         DialogResult colorResult = colorDialogColor.ShowDialog();
         // See if user pressed ok.
         if (colorResult == DialogResult.OK)
         {
             // Set form background to the selected color.
             pixelColor = colorDialogColor.Color;
             getDetails();
         }
         else
         {
             MouseHook.Start();
             status = true;
         }
     }
     catch { }
 }
Ejemplo n.º 2
0
 public VSColorPicker()
 {
     InitializeComponent();
     MouseHook.Start();
     MouseHook.MouseAction += new EventHandler(ClickEvent);
 }