FrmAbout.Designer.cs
上传用户:sxsgcs
上传日期:2013-10-21
资源大小:110k
文件大小:3k
源码类别:

CAD

开发平台:

C#

  1. namespace DrawTools
  2. {
  3.     partial class FrmAbout
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// Clean up any resources being used.
  11.         /// </summary>
  12.         /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22.         /// <summary>
  23.         /// Required method for Designer support - do not modify
  24.         /// the contents of this method with the code editor.
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAbout));
  29.             this.lblText = new System.Windows.Forms.Label();
  30.             this.btnOK = new System.Windows.Forms.Button();
  31.             this.SuspendLayout();
  32.             // 
  33.             // lblText
  34.             // 
  35.             this.lblText.Location = new System.Drawing.Point(25, 15);
  36.             this.lblText.Name = "lblText";
  37.             this.lblText.Size = new System.Drawing.Size(203, 77);
  38.             this.lblText.TabIndex = 0;
  39.             this.lblText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  40.             // 
  41.             // btnOK
  42.             // 
  43.             this.btnOK.Location = new System.Drawing.Point(90, 109);
  44.             this.btnOK.Name = "btnOK";
  45.             this.btnOK.Size = new System.Drawing.Size(77, 26);
  46.             this.btnOK.TabIndex = 1;
  47.             this.btnOK.Text = "OK";
  48.             this.btnOK.UseVisualStyleBackColor = true;
  49.             this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  50.             // 
  51.             // FrmAbout
  52.             // 
  53.             this.AcceptButton = this.btnOK;
  54.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  55.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  56.             this.ClientSize = new System.Drawing.Size(252, 150);
  57.             this.Controls.Add(this.btnOK);
  58.             this.Controls.Add(this.lblText);
  59.             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  60.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  61.             this.MaximizeBox = false;
  62.             this.MinimizeBox = false;
  63.             this.Name = "FrmAbout";
  64.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  65.             this.Text = "About Draw Tools";
  66.             this.Load += new System.EventHandler(this.FrmAbout_Load);
  67.             this.ResumeLayout(false);
  68.         }
  69.         #endregion
  70.         private System.Windows.Forms.Label lblText;
  71.         private System.Windows.Forms.Button btnOK;
  72.     }
  73. }