You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
3.5 KiB
C#
89 lines
3.5 KiB
C#
namespace Mesnac.Gui.Edit.Pad
|
|
{
|
|
partial class PropertyWindow
|
|
{
|
|
/// <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.panel1 = new System.Windows.Forms.Panel();
|
|
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
|
|
this.comboBox1 = new System.Windows.Forms.ComboBox();
|
|
this.panel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.propertyGrid1);
|
|
this.panel1.Controls.Add(this.comboBox1);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(192, 427);
|
|
this.panel1.TabIndex = 1;
|
|
//
|
|
// propertyGrid1
|
|
//
|
|
this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.propertyGrid1.HelpVisible = false;
|
|
this.propertyGrid1.Location = new System.Drawing.Point(0, 22);
|
|
this.propertyGrid1.Name = "propertyGrid1";
|
|
this.propertyGrid1.Size = new System.Drawing.Size(192, 405);
|
|
this.propertyGrid1.TabIndex = 1;
|
|
//
|
|
// comboBox1
|
|
//
|
|
this.comboBox1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.comboBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
|
|
this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBox1.FormattingEnabled = true;
|
|
this.comboBox1.Location = new System.Drawing.Point(0, 0);
|
|
this.comboBox1.Name = "comboBox1";
|
|
this.comboBox1.Size = new System.Drawing.Size(192, 22);
|
|
this.comboBox1.Sorted = true;
|
|
this.comboBox1.TabIndex = 0;
|
|
this.comboBox1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBox1_DrawItem);
|
|
//
|
|
// PropertyWindow
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(192, 427);
|
|
this.Controls.Add(this.panel1);
|
|
this.Name = "PropertyWindow";
|
|
this.Text = "属性";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PropertyWindow_FormClosing);
|
|
this.panel1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.PropertyGrid propertyGrid1;
|
|
private System.Windows.Forms.ComboBox comboBox1;
|
|
}
|
|
} |