/// <summary> /// Show the window and enable the timer /// </summary> new public void Show() { MagnifyingGlass.MakeScreenshot(); Cursor.Position = new Point(0, 0); base.Show(); MagnifyingGlass.UpdateTimer.Start(); Cursor.Hide(); }
private void MagnifyingGlass_DisplayUpdated(MagnifyingGlass sender) { // Refresh if the moving one has refreshed Invalidate(); OnDisplayUpdated(); }
private void magnifyingGlass1_DisplayUpdated(MagnifyingGlass sender) { // Update the current color preview panels background color panel1.BackColor = magnifyingGlass1.PixelColor; }