AboutDialog.Designer.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:5k
源码类别:

C#编程

开发平台:

C#

  1. namespace DockSample
  2. {
  3.     partial class AboutDialog
  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.             this.buttonOK = new System.Windows.Forms.Button();
  29.             this.label1 = new System.Windows.Forms.Label();
  30.             this.label2 = new System.Windows.Forms.Label();
  31.             this.label3 = new System.Windows.Forms.Label();
  32.             this.labelLibVersion = new System.Windows.Forms.Label();
  33.             this.labelAppVersion = new System.Windows.Forms.Label();
  34.             this.SuspendLayout();
  35.             // 
  36.             // buttonOK
  37.             // 
  38.             this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  39.             this.buttonOK.Location = new System.Drawing.Point(240, 184);
  40.             this.buttonOK.Name = "buttonOK";
  41.             this.buttonOK.Size = new System.Drawing.Size(75, 23);
  42.             this.buttonOK.TabIndex = 0;
  43.             this.buttonOK.Text = "OK";
  44.             // 
  45.             // label1
  46.             // 
  47.             this.label1.Location = new System.Drawing.Point(24, 59);
  48.             this.label1.Name = "label1";
  49.             this.label1.Size = new System.Drawing.Size(109, 16);
  50.             this.label1.TabIndex = 1;
  51.             this.label1.Text = "DockSample Version:";
  52.             // 
  53.             // label2
  54.             // 
  55.             this.label2.Location = new System.Drawing.Point(24, 119);
  56.             this.label2.Name = "label2";
  57.             this.label2.Size = new System.Drawing.Size(272, 32);
  58.             this.label2.TabIndex = 2;
  59.             this.label2.Text = "Copyright 2007, Weifen Luo";
  60.             // 
  61.             // label3
  62.             // 
  63.             this.label3.AutoSize = true;
  64.             this.label3.Location = new System.Drawing.Point(24, 81);
  65.             this.label3.Name = "label3";
  66.             this.label3.Size = new System.Drawing.Size(128, 13);
  67.             this.label3.TabIndex = 3;
  68.             this.label3.Text = "DockPanel Suite Version:";
  69.             // 
  70.             // labelLibVersion
  71.             // 
  72.             this.labelLibVersion.Location = new System.Drawing.Point(148, 81);
  73.             this.labelLibVersion.Name = "labelLibVersion";
  74.             this.labelLibVersion.Size = new System.Drawing.Size(97, 13);
  75.             this.labelLibVersion.TabIndex = 4;
  76.             // 
  77.             // labelAppVersion
  78.             // 
  79.             this.labelAppVersion.Location = new System.Drawing.Point(129, 59);
  80.             this.labelAppVersion.Name = "labelAppVersion";
  81.             this.labelAppVersion.Size = new System.Drawing.Size(97, 13);
  82.             this.labelAppVersion.TabIndex = 5;
  83.             // 
  84.             // AboutDialog
  85.             // 
  86.             this.AcceptButton = this.buttonOK;
  87.             this.CancelButton = this.buttonOK;
  88.             this.ClientSize = new System.Drawing.Size(322, 215);
  89.             this.Controls.Add(this.labelAppVersion);
  90.             this.Controls.Add(this.labelLibVersion);
  91.             this.Controls.Add(this.label3);
  92.             this.Controls.Add(this.label2);
  93.             this.Controls.Add(this.label1);
  94.             this.Controls.Add(this.buttonOK);
  95.             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  96.             this.MaximizeBox = false;
  97.             this.MinimizeBox = false;
  98.             this.Name = "AboutDialog";
  99.             this.ShowInTaskbar = false;
  100.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  101.             this.Text = "About";
  102.             this.Load += new System.EventHandler(this.AboutDialog_Load);
  103.             this.ResumeLayout(false);
  104.             this.PerformLayout();
  105. }
  106. #endregion
  107.         private System.Windows.Forms.Label label2;
  108.         private System.Windows.Forms.Label label1;
  109.         private System.Windows.Forms.Button buttonOK;
  110.         private System.Windows.Forms.Label label3;
  111.         private System.Windows.Forms.Label labelLibVersion;
  112.         private System.Windows.Forms.Label labelAppVersion;
  113.     }
  114. }