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