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

C#编程

开发平台:

C#

  1. namespace DockSample
  2. {
  3.     partial class DummyPropertyWindow
  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.components = new System.ComponentModel.Container();
  29.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DummyPropertyWindow));
  30.             this.propertyGrid = new System.Windows.Forms.PropertyGrid();
  31.             this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components);
  32.             this.menuItem1 = new System.Windows.Forms.MenuItem();
  33.             this.comboBox = new System.Windows.Forms.ComboBox();
  34.             this.SuspendLayout();
  35.             // 
  36.             // propertyGrid
  37.             // 
  38.             this.propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
  39.             this.propertyGrid.LineColor = System.Drawing.SystemColors.ScrollBar;
  40.             this.propertyGrid.Location = new System.Drawing.Point(0, 3);
  41.             this.propertyGrid.Name = "propertyGrid";
  42.             this.propertyGrid.Size = new System.Drawing.Size(234, 381);
  43.             this.propertyGrid.TabIndex = 0;
  44.             // 
  45.             // mainMenu1
  46.             // 
  47.             this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
  48.             this.menuItem1});
  49.             // 
  50.             // menuItem1
  51.             // 
  52.             this.menuItem1.Index = 0;
  53.             this.menuItem1.Text = "File";
  54.             // 
  55.             // comboBox
  56.             // 
  57.             this.comboBox.Dock = System.Windows.Forms.DockStyle.Top;
  58.             this.comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  59.             this.comboBox.Items.AddRange(new object[] {
  60.             "propertyGrid"});
  61.             this.comboBox.Location = new System.Drawing.Point(0, 3);
  62.             this.comboBox.Name = "comboBox";
  63.             this.comboBox.Size = new System.Drawing.Size(234, 20);
  64.             this.comboBox.TabIndex = 1;
  65.             // 
  66.             // DummyPropertyWindow
  67.             // 
  68.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  69.             this.ClientSize = new System.Drawing.Size(234, 387);
  70.             this.Controls.Add(this.comboBox);
  71.             this.Controls.Add(this.propertyGrid);
  72.             this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  73.             this.HideOnClose = true;
  74.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  75.             this.Menu = this.mainMenu1;
  76.             this.Name = "DummyPropertyWindow";
  77.             this.Padding = new System.Windows.Forms.Padding(0, 3, 0, 3);
  78.             this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.DockRight;
  79.             this.TabText = "Properties";
  80.             this.Text = "Properties";
  81.             this.ResumeLayout(false);
  82. }
  83. #endregion
  84.         private System.Windows.Forms.PropertyGrid propertyGrid;
  85. private System.Windows.Forms.MainMenu mainMenu1;
  86. private System.Windows.Forms.MenuItem menuItem1;
  87.         private System.Windows.Forms.ComboBox comboBox;
  88.     }
  89. }