DummyPropertyWindow.Designer.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:4k
- namespace DockSample
- {
- partial class DummyPropertyWindow
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DummyPropertyWindow));
- this.propertyGrid = new System.Windows.Forms.PropertyGrid();
- this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components);
- this.menuItem1 = new System.Windows.Forms.MenuItem();
- this.comboBox = new System.Windows.Forms.ComboBox();
- this.SuspendLayout();
- //
- // propertyGrid
- //
- this.propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
- this.propertyGrid.LineColor = System.Drawing.SystemColors.ScrollBar;
- this.propertyGrid.Location = new System.Drawing.Point(0, 3);
- this.propertyGrid.Name = "propertyGrid";
- this.propertyGrid.Size = new System.Drawing.Size(234, 381);
- this.propertyGrid.TabIndex = 0;
- //
- // mainMenu1
- //
- this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
- this.menuItem1});
- //
- // menuItem1
- //
- this.menuItem1.Index = 0;
- this.menuItem1.Text = "File";
- //
- // comboBox
- //
- this.comboBox.Dock = System.Windows.Forms.DockStyle.Top;
- this.comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox.Items.AddRange(new object[] {
- "propertyGrid"});
- this.comboBox.Location = new System.Drawing.Point(0, 3);
- this.comboBox.Name = "comboBox";
- this.comboBox.Size = new System.Drawing.Size(234, 20);
- this.comboBox.TabIndex = 1;
- //
- // DummyPropertyWindow
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.ClientSize = new System.Drawing.Size(234, 387);
- this.Controls.Add(this.comboBox);
- this.Controls.Add(this.propertyGrid);
- this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.HideOnClose = true;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Menu = this.mainMenu1;
- this.Name = "DummyPropertyWindow";
- this.Padding = new System.Windows.Forms.Padding(0, 3, 0, 3);
- this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.DockRight;
- this.TabText = "Properties";
- this.Text = "Properties";
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.PropertyGrid propertyGrid;
- private System.Windows.Forms.MainMenu mainMenu1;
- private System.Windows.Forms.MenuItem menuItem1;
- private System.Windows.Forms.ComboBox comboBox;
- }
- }