frmSnake.Designer.cs
上传用户:cljx11
上传日期:2022-08-09
资源大小:49k
文件大小:4k
源码类别:

其他智力游戏

开发平台:

C#

  1. namespace Snake_v2
  2. {
  3.     partial class frmSnake
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows 窗体设计器生成的代码
  22.         /// <summary>
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.components = new System.ComponentModel.Container();
  29.             this.picBG = new System.Windows.Forms.PictureBox();
  30.             this.btnStar = new System.Windows.Forms.Button();
  31.             this.timer = new System.Windows.Forms.Timer(this.components);
  32.             this.btnClose = new System.Windows.Forms.Button();
  33.             ((System.ComponentModel.ISupportInitialize)(this.picBG)).BeginInit();
  34.             this.SuspendLayout();
  35.             // 
  36.             // picBG
  37.             // 
  38.             this.picBG.BackColor = System.Drawing.Color.LightSteelBlue;
  39.             this.picBG.Location = new System.Drawing.Point(12, 12);
  40.             this.picBG.Name = "picBG";
  41.             this.picBG.Size = new System.Drawing.Size(350, 150);
  42.             this.picBG.TabIndex = 0;
  43.             this.picBG.TabStop = false;
  44.             this.picBG.Paint += new System.Windows.Forms.PaintEventHandler(this.picBG_Paint);
  45.             // 
  46.             // btnStar
  47.             // 
  48.             this.btnStar.Location = new System.Drawing.Point(368, 98);
  49.             this.btnStar.Name = "btnStar";
  50.             this.btnStar.Size = new System.Drawing.Size(89, 29);
  51.             this.btnStar.TabIndex = 1;
  52.             this.btnStar.Text = "开始";
  53.             this.btnStar.UseVisualStyleBackColor = true;
  54.             this.btnStar.Click += new System.EventHandler(this.btnStar_Click);
  55.             // 
  56.             // timer
  57.             // 
  58.             this.timer.Interval = 150;
  59.             this.timer.Tick += new System.EventHandler(this.timer_Tick);
  60.             // 
  61.             // btnClose
  62.             // 
  63.             this.btnClose.Location = new System.Drawing.Point(368, 133);
  64.             this.btnClose.Name = "btnClose";
  65.             this.btnClose.Size = new System.Drawing.Size(89, 29);
  66.             this.btnClose.TabIndex = 4;
  67.             this.btnClose.Text = "退出";
  68.             this.btnClose.UseVisualStyleBackColor = true;
  69.             this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  70.             // 
  71.             // frmSnake
  72.             // 
  73.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  74.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  75.             this.ClientSize = new System.Drawing.Size(462, 173);
  76.             this.Controls.Add(this.btnClose);
  77.             this.Controls.Add(this.btnStar);
  78.             this.Controls.Add(this.picBG);
  79.             this.KeyPreview = true;
  80.             this.MaximizeBox = false;
  81.             this.MaximumSize = new System.Drawing.Size(470, 200);
  82.             this.MinimumSize = new System.Drawing.Size(470, 200);
  83.             this.Name = "frmSnake";
  84.             this.ShowIcon = false;
  85.             this.Text = "Snake";
  86.             ((System.ComponentModel.ISupportInitialize)(this.picBG)).EndInit();
  87.             this.ResumeLayout(false);
  88.         }
  89.         #endregion
  90.         private System.Windows.Forms.PictureBox picBG;
  91.         private System.Windows.Forms.Button btnStar;
  92.         private System.Windows.Forms.Timer timer;
  93.         private System.Windows.Forms.Button btnClose;
  94.     }
  95. }