Frm_Main.cs
View Code
Frm_Main.designer.cs
View Code
1 namespace MoveForm
2 {
3 partial class Frm_Main
4 {
5 /// <summary>
6 /// 必需的设计器变量。
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// 清理所有正在使用的资源。
12 /// </summary>
13 /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows 窗体设计器生成的代码
24
25 /// <summary>
26 /// 设计器支持所需的方法 - 不要
27 /// 使用代码编辑器修改此方法的内容。
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.components = new System.ComponentModel.Container();
32 this.timer1 = new System.Windows.Forms.Timer(this.components);
33 this.timer2 = new System.Windows.Forms.Timer(this.components);
34 this.SuspendLayout();
35 //
36 // timer1
37 //
38 this.timer1.Enabled = true;
39 this.timer1.Interval = 10;
40 this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
41 //
42 // timer2
43 //
44 this.timer2.Interval = 10;
45 this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
46 //
47 // Frm_Main
48 //
49 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
50 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
51 this.BackgroundImage = global::MoveForm.Properties.Resources.星星图;
52 this.ClientSize = new System.Drawing.Size(320, 91);
53 this.Name = "Frm_Main";
54 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
55 this.Text = "使用Timer组件制作左右飘动的窗体";
56 this.ResumeLayout(false);
57
58 }
59
60 #endregion
61
62 private System.Windows.Forms.Timer timer1;
63 private System.Windows.Forms.Timer timer2;
64 }
65 }
作者:墨明棋妙
出处:http://www.cnblogs.com/ynbt/
关于作者:专注于.Net、WCF和移动互联网开发。
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,如有问题,可以通过ynbt_wang@163.com联系我,非常感谢。 。
出处:http://www.cnblogs.com/ynbt/
关于作者:专注于.Net、WCF和移动互联网开发。
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,如有问题,可以通过ynbt_wang@163.com联系我,非常感谢。 。