WingCloudHexExplorer/HexExplorer/FrmPenFEdit.Designer.cs

115 lines
5.1 KiB
C#

namespace HexExplorer
{
partial class FrmPenFEdit
{
/// <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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.BtnOK = new System.Windows.Forms.Button();
this.pg = new System.Windows.Forms.PropertyGrid();
this.BtnCancel = new System.Windows.Forms.Button();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.BtnOK, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.pg, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.BtnCancel, 1, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 70F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(402, 433);
this.tableLayoutPanel1.TabIndex = 0;
//
// BtnOK
//
this.BtnOK.Anchor = System.Windows.Forms.AnchorStyles.None;
this.BtnOK.Location = new System.Drawing.Point(25, 373);
this.BtnOK.Name = "BtnOK";
this.BtnOK.Size = new System.Drawing.Size(150, 50);
this.BtnOK.TabIndex = 1;
this.BtnOK.Text = "确定";
this.BtnOK.UseVisualStyleBackColor = true;
this.BtnOK.Click += new System.EventHandler(this.BtnOK_Click);
//
// pg
//
this.tableLayoutPanel1.SetColumnSpan(this.pg, 2);
this.pg.Dock = System.Windows.Forms.DockStyle.Fill;
this.pg.HelpVisible = false;
this.pg.Location = new System.Drawing.Point(3, 3);
this.pg.Name = "pg";
this.pg.PropertySort = System.Windows.Forms.PropertySort.Alphabetical;
this.pg.Size = new System.Drawing.Size(396, 357);
this.pg.TabIndex = 1;
this.pg.ToolbarVisible = false;
this.pg.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.Pg_PropertyValueChanged);
//
// BtnCancel
//
this.BtnCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
this.BtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.BtnCancel.Location = new System.Drawing.Point(226, 373);
this.BtnCancel.Name = "BtnCancel";
this.BtnCancel.Size = new System.Drawing.Size(150, 50);
this.BtnCancel.TabIndex = 1;
this.BtnCancel.Text = "取消";
this.BtnCancel.UseVisualStyleBackColor = true;
this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
//
// FrmPenFEdit
//
this.AcceptButton = this.BtnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.BtnCancel;
this.ClientSize = new System.Drawing.Size(402, 433);
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "FrmPenFEdit";
this.Text = "设置笔刷";
this.Load += new System.EventHandler(this.FrmPenFEdit_Load);
this.tableLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.PropertyGrid pg;
private System.Windows.Forms.Button BtnOK;
private System.Windows.Forms.Button BtnCancel;
}
}