Beispiel #1
0
 /// <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();
 }
Beispiel #2
0
 private void MagnifyingGlass_DisplayUpdated(MagnifyingGlass sender)
 {
     // Refresh if the moving one has refreshed
     Invalidate();
     OnDisplayUpdated();
 }
Beispiel #3
0
 private void magnifyingGlass1_DisplayUpdated(MagnifyingGlass sender)
 {
     // Update the current color preview panels background color
     panel1.BackColor = magnifyingGlass1.PixelColor;
 }