Beispiel #1
0
 public static void ShowScreenSaver()
 {
     foreach (Screen screen in Screen.AllScreens)
     {
         ScreenForm screenForm = new ScreenForm(screen.Bounds, screen.DeviceName, true);
         screenForm.Show();
     }
 }
Beispiel #2
0
 public ClockSettings(ScreenForm sf)
 {
     InitializeComponent();
     SetStyle(ControlStyles.SupportsTransparentBackColor, true);
     UpdateControls();
     Cursor.Show();
     this.sf = sf;
 }