AboutBox.Designer.cs
上传用户:dzysfj
上传日期:2021-09-14
资源大小:118k
文件大小:10k
源码类别:

菜单

开发平台:

C#

  1. namespace SystemMenuDemo
  2. {
  3.     partial class AboutBox
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         protected override void Dispose(bool disposing)
  13.         {
  14.             if (disposing && (components != null))
  15.             {
  16.                 components.Dispose();
  17.             }
  18.             base.Dispose(disposing);
  19.         }
  20.         #region Windows 窗体设计器生成的代码
  21.         /// <summary>
  22.         /// 设计器支持所需的方法 - 不要
  23.         /// 使用代码编辑器修改此方法的内容。
  24.         /// </summary>
  25.         private void InitializeComponent()
  26.         {
  27.             this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
  28.             this.logoPictureBox = new System.Windows.Forms.PictureBox();
  29.             this.labelProductName = new System.Windows.Forms.Label();
  30.             this.labelVersion = new System.Windows.Forms.Label();
  31.             this.labelCopyright = new System.Windows.Forms.Label();
  32.             this.labelCompanyName = new System.Windows.Forms.Label();
  33.             this.textBoxDescription = new System.Windows.Forms.TextBox();
  34.             this.okButton = new System.Windows.Forms.Button();
  35.             this.tableLayoutPanel.SuspendLayout();
  36.             ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
  37.             this.SuspendLayout();
  38.             // 
  39.             // tableLayoutPanel
  40.             // 
  41.             this.tableLayoutPanel.ColumnCount = 2;
  42.             this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
  43.             this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
  44.             this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
  45.             this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
  46.             this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
  47.             this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
  48.             this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
  49.             this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
  50.             this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
  51.             this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  52.             this.tableLayoutPanel.Location = new System.Drawing.Point(9, 8);
  53.             this.tableLayoutPanel.Name = "tableLayoutPanel";
  54.             this.tableLayoutPanel.RowCount = 6;
  55.             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
  56.             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
  57.             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
  58.             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
  59.             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
  60.             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
  61.             this.tableLayoutPanel.Size = new System.Drawing.Size(449, 245);
  62.             this.tableLayoutPanel.TabIndex = 0;
  63.             // 
  64.             // logoPictureBox
  65.             // 
  66.             this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
  67.             this.logoPictureBox.Image = global::SystemMenuDemo.Properties.Resources.Logo;
  68.             this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
  69.             this.logoPictureBox.Name = "logoPictureBox";
  70.             this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
  71.             this.logoPictureBox.Size = new System.Drawing.Size(142, 239);
  72.             this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  73.             this.logoPictureBox.TabIndex = 12;
  74.             this.logoPictureBox.TabStop = false;
  75.             // 
  76.             // labelProductName
  77.             // 
  78.             this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
  79.             this.labelProductName.Location = new System.Drawing.Point(154, 0);
  80.             this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
  81.             this.labelProductName.MaximumSize = new System.Drawing.Size(0, 16);
  82.             this.labelProductName.Name = "labelProductName";
  83.             this.labelProductName.Size = new System.Drawing.Size(292, 16);
  84.             this.labelProductName.TabIndex = 19;
  85.             this.labelProductName.Text = "产品名称";
  86.             this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  87.             // 
  88.             // labelVersion
  89.             // 
  90.             this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
  91.             this.labelVersion.Location = new System.Drawing.Point(154, 24);
  92.             this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
  93.             this.labelVersion.MaximumSize = new System.Drawing.Size(0, 16);
  94.             this.labelVersion.Name = "labelVersion";
  95.             this.labelVersion.Size = new System.Drawing.Size(292, 16);
  96.             this.labelVersion.TabIndex = 0;
  97.             this.labelVersion.Text = "版本";
  98.             this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  99.             // 
  100.             // labelCopyright
  101.             // 
  102.             this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
  103.             this.labelCopyright.Location = new System.Drawing.Point(154, 48);
  104.             this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
  105.             this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 16);
  106.             this.labelCopyright.Name = "labelCopyright";
  107.             this.labelCopyright.Size = new System.Drawing.Size(292, 16);
  108.             this.labelCopyright.TabIndex = 21;
  109.             this.labelCopyright.Text = "Copyright";
  110.             this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  111.             // 
  112.             // labelCompanyName
  113.             // 
  114.             this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
  115.             this.labelCompanyName.Location = new System.Drawing.Point(154, 72);
  116.             this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
  117.             this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 16);
  118.             this.labelCompanyName.Name = "labelCompanyName";
  119.             this.labelCompanyName.Size = new System.Drawing.Size(292, 16);
  120.             this.labelCompanyName.TabIndex = 22;
  121.             this.labelCompanyName.Text = "公司名称";
  122.             this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  123.             // 
  124.             // textBoxDescription
  125.             // 
  126.             this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
  127.             this.textBoxDescription.Location = new System.Drawing.Point(154, 99);
  128.             this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
  129.             this.textBoxDescription.Multiline = true;
  130.             this.textBoxDescription.Name = "textBoxDescription";
  131.             this.textBoxDescription.ReadOnly = true;
  132.             this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  133.             this.textBoxDescription.Size = new System.Drawing.Size(292, 116);
  134.             this.textBoxDescription.TabIndex = 23;
  135.             this.textBoxDescription.TabStop = false;
  136.             this.textBoxDescription.Text = "SystemMenuNativeWindow类实现对系统菜单的操作,SystemMenuDemo提供SystemMenuNativeWindow类的一个应用和实例" +
  137.                 "。rn";
  138.             // 
  139.             // okButton
  140.             // 
  141.             this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  142.             this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  143.             this.okButton.Location = new System.Drawing.Point(371, 221);
  144.             this.okButton.Name = "okButton";
  145.             this.okButton.Size = new System.Drawing.Size(75, 21);
  146.             this.okButton.TabIndex = 24;
  147.             this.okButton.Text = "确定(&O)";
  148.             // 
  149.             // AboutBox
  150.             // 
  151.             this.AcceptButton = this.okButton;
  152.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  153.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  154.             this.ClientSize = new System.Drawing.Size(467, 261);
  155.             this.Controls.Add(this.tableLayoutPanel);
  156.             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  157.             this.MaximizeBox = false;
  158.             this.MinimizeBox = false;
  159.             this.Name = "AboutBox";
  160.             this.Padding = new System.Windows.Forms.Padding(9, 8, 9, 8);
  161.             this.ShowIcon = false;
  162.             this.ShowInTaskbar = false;
  163.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  164.             this.Text = "AboutBox1";
  165.             this.tableLayoutPanel.ResumeLayout(false);
  166.             this.tableLayoutPanel.PerformLayout();
  167.             ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
  168.             this.ResumeLayout(false);
  169.         }
  170.         #endregion
  171.         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
  172.         private System.Windows.Forms.PictureBox logoPictureBox;
  173.         private System.Windows.Forms.Label labelProductName;
  174.         private System.Windows.Forms.Label labelVersion;
  175.         private System.Windows.Forms.Label labelCopyright;
  176.         private System.Windows.Forms.Label labelCompanyName;
  177.         private System.Windows.Forms.TextBox textBoxDescription;
  178.         private System.Windows.Forms.Button okButton;
  179.     }
  180. }