private void ClickEvent(object sender, EventArgs e) { try { Console.WriteLine("Left mouse click!"); MouseHook.stop(); getDetails(); } catch { } }
private void buttonNew_Click(object sender, EventArgs e) { try { MouseHook.Start(); status = true; reset(); } catch { } }
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 { } }
public VSColorPicker() { InitializeComponent(); MouseHook.Start(); MouseHook.MouseAction += new EventHandler(ClickEvent); }