Form1.Designer.cs
上传用户:xyl529207
上传日期:2022-08-03
资源大小:935k
文件大小:5k
源码类别:

行业应用

开发平台:

SQL

  1. namespace BookStoreMan
  2. {
  3.     partial class Form1
  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.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  29.             this.button1 = new System.Windows.Forms.Button();
  30.             this.button2 = new System.Windows.Forms.Button();
  31.             this.button3 = new System.Windows.Forms.Button();
  32.             this.button4 = new System.Windows.Forms.Button();
  33.             this.SuspendLayout();
  34.             // 
  35.             // button1
  36.             // 
  37.             this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
  38.             this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  39.             this.button1.Location = new System.Drawing.Point(50, 20);
  40.             this.button1.Name = "button1";
  41.             this.button1.Size = new System.Drawing.Size(120, 30);
  42.             this.button1.TabIndex = 0;
  43.             this.button1.Text = "书店收银台";
  44.             this.button1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  45.             this.button1.UseVisualStyleBackColor = true;
  46.             this.button1.Click += new System.EventHandler(this.button1_Click);
  47.             // 
  48.             // button2
  49.             // 
  50.             this.button2.Image = ((System.Drawing.Image)(resources.GetObject("button2.Image")));
  51.             this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  52.             this.button2.Location = new System.Drawing.Point(50, 70);
  53.             this.button2.Name = "button2";
  54.             this.button2.Size = new System.Drawing.Size(120, 30);
  55.             this.button2.TabIndex = 1;
  56.             this.button2.Text = "图书管理";
  57.             this.button2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  58.             this.button2.UseVisualStyleBackColor = true;
  59.             this.button2.Click += new System.EventHandler(this.button2_Click);
  60.             // 
  61.             // button3
  62.             // 
  63.             this.button3.Image = ((System.Drawing.Image)(resources.GetObject("button3.Image")));
  64.             this.button3.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  65.             this.button3.Location = new System.Drawing.Point(50, 120);
  66.             this.button3.Name = "button3";
  67.             this.button3.Size = new System.Drawing.Size(120, 30);
  68.             this.button3.TabIndex = 2;
  69.             this.button3.Text = "会员管理";
  70.             this.button3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  71.             this.button3.UseVisualStyleBackColor = true;
  72.             this.button3.Click += new System.EventHandler(this.button3_Click);
  73.             // 
  74.             // button4
  75.             // 
  76.             this.button4.Image = ((System.Drawing.Image)(resources.GetObject("button4.Image")));
  77.             this.button4.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  78.             this.button4.Location = new System.Drawing.Point(50, 170);
  79.             this.button4.Name = "button4";
  80.             this.button4.Size = new System.Drawing.Size(120, 30);
  81.             this.button4.TabIndex = 3;
  82.             this.button4.Text = "统计查询";
  83.             this.button4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  84.             this.button4.UseVisualStyleBackColor = true;
  85.             this.button4.Click += new System.EventHandler(this.button4_Click);
  86.             // 
  87.             // Form1
  88.             // 
  89.             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  90.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  91.             this.ClientSize = new System.Drawing.Size(232, 243);
  92.             this.Controls.Add(this.button4);
  93.             this.Controls.Add(this.button3);
  94.             this.Controls.Add(this.button2);
  95.             this.Controls.Add(this.button1);
  96.             this.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  97.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  98.             this.MaximizeBox = false;
  99.             this.MinimizeBox = false;
  100.             this.Name = "Form1";
  101.             this.Text = "藏书阁书店零售管理系统";
  102.             this.ResumeLayout(false);
  103.         }
  104.         #endregion
  105.         private System.Windows.Forms.Button button1;
  106.         private System.Windows.Forms.Button button2;
  107.         private System.Windows.Forms.Button button3;
  108.         private System.Windows.Forms.Button button4;
  109.     }
  110. }