88 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C#
		
	
	
	
| namespace DeiNiu.Wms.CE
 | ||
| {
 | ||
|     partial class Message
 | ||
|     {
 | ||
|         /// <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.title_lab = new System.Windows.Forms.Label();
 | ||
|             this.button1 = new System.Windows.Forms.Button();
 | ||
|             this.button2 = new System.Windows.Forms.Button();
 | ||
|             this.SuspendLayout();
 | ||
|             // 
 | ||
|             // title_lab
 | ||
|             // 
 | ||
|             this.title_lab.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
 | ||
|             this.title_lab.ForeColor = System.Drawing.Color.Red;
 | ||
|             this.title_lab.Location = new System.Drawing.Point(21, 27);
 | ||
|             this.title_lab.Name = "title_lab";
 | ||
|             this.title_lab.Size = new System.Drawing.Size(203, 64);
 | ||
|             // 
 | ||
|             // button1
 | ||
|             // 
 | ||
|             this.button1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular);
 | ||
|             this.button1.Location = new System.Drawing.Point(40, 112);
 | ||
|             this.button1.Name = "button1";
 | ||
|             this.button1.Size = new System.Drawing.Size(72, 23);
 | ||
|             this.button1.TabIndex = 1;
 | ||
|             this.button1.Text = "确 定";
 | ||
|             this.button1.Click += new System.EventHandler(this.button1_Click);
 | ||
|             // 
 | ||
|             // button2
 | ||
|             // 
 | ||
|             this.button2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular);
 | ||
|             this.button2.Location = new System.Drawing.Point(133, 113);
 | ||
|             this.button2.Name = "button2";
 | ||
|             this.button2.Size = new System.Drawing.Size(72, 23);
 | ||
|             this.button2.TabIndex = 1;
 | ||
|             this.button2.Text = "取 消";
 | ||
|             this.button2.Click += new System.EventHandler(this.button2_Click);
 | ||
|             // 
 | ||
|             // Mess
 | ||
|             // 
 | ||
|             this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
 | ||
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
 | ||
|             this.AutoScroll = true;
 | ||
|             this.ClientSize = new System.Drawing.Size(245, 175);
 | ||
|             this.ControlBox = false;
 | ||
|             this.Controls.Add(this.button2);
 | ||
|             this.Controls.Add(this.button1);
 | ||
|             this.Controls.Add(this.title_lab);
 | ||
|             this.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
 | ||
|             this.Name = "Mess";
 | ||
|             this.Text = "确认提示:";
 | ||
|             this.Load += new System.EventHandler(this.Mess_Load);
 | ||
|             this.ResumeLayout(false);
 | ||
| 
 | ||
|         }
 | ||
| 
 | ||
|         #endregion
 | ||
| 
 | ||
|         private System.Windows.Forms.Label title_lab;
 | ||
|         private System.Windows.Forms.Button button1;
 | ||
|         private System.Windows.Forms.Button button2;
 | ||
|     }
 | ||
| } |