-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathScreensaverForm.Designer.cs
35 lines (30 loc) · 1 KB
/
ScreensaverForm.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System.Windows.Forms;
namespace WebScreenSaver
{
public partial class ScreensaverForm : Form
{
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.SuspendLayout();
//
// ScreensaverForm
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(292, 273);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "ScreensaverForm";
this.ShowInTaskbar = false;
this.Text = "Form1";
this.Load += new System.EventHandler(this.OnFormLoad);
this.ResumeLayout(false);
}
#endregion
}
}