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

菜单

开发平台:

C#

  1. namespace SystemMenuDemo
  2. {
  3.     partial class FormSystemMenuDemo
  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.             this.button1 = new System.Windows.Forms.Button();
  29.             this.linkLabel1 = new System.Windows.Forms.LinkLabel();
  30.             this.SuspendLayout();
  31.             // 
  32.             // button1
  33.             // 
  34.             this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  35.             this.button1.Location = new System.Drawing.Point(313, 12);
  36.             this.button1.Name = "button1";
  37.             this.button1.Size = new System.Drawing.Size(75, 23);
  38.             this.button1.TabIndex = 0;
  39.             this.button1.Text = "恢复系统菜单";
  40.             this.button1.UseVisualStyleBackColor = true;
  41.             this.button1.Click += new System.EventHandler(this.button1_Click);
  42.             // 
  43.             // linkLabel1
  44.             // 
  45.             this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  46.             this.linkLabel1.AutoSize = true;
  47.             this.linkLabel1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  48.             this.linkLabel1.Location = new System.Drawing.Point(67, 41);
  49.             this.linkLabel1.Name = "linkLabel1";
  50.             this.linkLabel1.Size = new System.Drawing.Size(258, 14);
  51.             this.linkLabel1.TabIndex = 14;
  52.             this.linkLabel1.TabStop = true;
  53.             this.linkLabel1.Text = "www.csharpwin.com(CS 程序员之窗)";
  54.             // 
  55.             // FormSystemMenuDemo
  56.             // 
  57.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  58.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  59.             this.ClientSize = new System.Drawing.Size(400, 64);
  60.             this.Controls.Add(this.linkLabel1);
  61.             this.Controls.Add(this.button1);
  62.             this.Name = "FormSystemMenuDemo";
  63.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  64.             this.Text = "CS 程序员之窗 - 用API实现对系统菜单的操作";
  65.             this.ResumeLayout(false);
  66.             this.PerformLayout();
  67.         }
  68.         #endregion
  69.         private System.Windows.Forms.Button button1;
  70.         private System.Windows.Forms.LinkLabel linkLabel1;
  71.     }
  72. }