12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- namespace ScreenSaverEf
- {
- partial class MainForm
- {
-
-
-
- private System.ComponentModel.IContainer components = null;
-
-
-
-
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
-
-
-
-
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.UpdateTimer = new System.Windows.Forms.Timer(this.components);
- this.SuspendLayout();
-
-
-
- this.UpdateTimer.Tick += new System.EventHandler(this.timer1_Tick);
-
-
-
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Black;
- this.ClientSize = new System.Drawing.Size(862, 502);
- this.DoubleBuffered = true;
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "MainForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
- this.Text = "GDI Example";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
- this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
- this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Form1_KeyPress);
- this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyUp);
- this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseClick);
- this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.Form1_PreviewKeyDown);
- this.Resize += new System.EventHandler(this.Form1_Resize);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Timer UpdateTimer;
- }
- }
|