frmSnake.Designer.cs
资源名称:Snake.rar [点击查看]
上传用户:cljx11
上传日期:2022-08-09
资源大小:49k
文件大小:4k
源码类别:
其他智力游戏
开发平台:
C#
- namespace Snake_v2
- {
- partial class frmSnake
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.picBG = new System.Windows.Forms.PictureBox();
- this.btnStar = new System.Windows.Forms.Button();
- this.timer = new System.Windows.Forms.Timer(this.components);
- this.btnClose = new System.Windows.Forms.Button();
- ((System.ComponentModel.ISupportInitialize)(this.picBG)).BeginInit();
- this.SuspendLayout();
- //
- // picBG
- //
- this.picBG.BackColor = System.Drawing.Color.LightSteelBlue;
- this.picBG.Location = new System.Drawing.Point(12, 12);
- this.picBG.Name = "picBG";
- this.picBG.Size = new System.Drawing.Size(350, 150);
- this.picBG.TabIndex = 0;
- this.picBG.TabStop = false;
- this.picBG.Paint += new System.Windows.Forms.PaintEventHandler(this.picBG_Paint);
- //
- // btnStar
- //
- this.btnStar.Location = new System.Drawing.Point(368, 98);
- this.btnStar.Name = "btnStar";
- this.btnStar.Size = new System.Drawing.Size(89, 29);
- this.btnStar.TabIndex = 1;
- this.btnStar.Text = "开始";
- this.btnStar.UseVisualStyleBackColor = true;
- this.btnStar.Click += new System.EventHandler(this.btnStar_Click);
- //
- // timer
- //
- this.timer.Interval = 150;
- this.timer.Tick += new System.EventHandler(this.timer_Tick);
- //
- // btnClose
- //
- this.btnClose.Location = new System.Drawing.Point(368, 133);
- this.btnClose.Name = "btnClose";
- this.btnClose.Size = new System.Drawing.Size(89, 29);
- this.btnClose.TabIndex = 4;
- this.btnClose.Text = "退出";
- this.btnClose.UseVisualStyleBackColor = true;
- this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
- //
- // frmSnake
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(462, 173);
- this.Controls.Add(this.btnClose);
- this.Controls.Add(this.btnStar);
- this.Controls.Add(this.picBG);
- this.KeyPreview = true;
- this.MaximizeBox = false;
- this.MaximumSize = new System.Drawing.Size(470, 200);
- this.MinimumSize = new System.Drawing.Size(470, 200);
- this.Name = "frmSnake";
- this.ShowIcon = false;
- this.Text = "Snake";
- ((System.ComponentModel.ISupportInitialize)(this.picBG)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.PictureBox picBG;
- private System.Windows.Forms.Button btnStar;
- private System.Windows.Forms.Timer timer;
- private System.Windows.Forms.Button btnClose;
- }
- }