mirror of
https://github.com/reactos/reactosdbg.git
synced 2024-11-23 11:49:53 +00:00
eacb37f610
-allow custom names for property pages instead of controlnames only -some other minor changes svn path=/trunk/tools/reactosdbg/; revision=774
116 lines
5.0 KiB
C#
116 lines
5.0 KiB
C#
namespace RosDBG
|
|
{
|
|
partial class Settings
|
|
{
|
|
/// <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.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.SettingsGrid = new System.Windows.Forms.PropertyGrid();
|
|
this.OKBtn = new System.Windows.Forms.Button();
|
|
this.CancelBtn = new System.Windows.Forms.Button();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
|
this.splitContainer1.IsSplitterFixed = true;
|
|
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.SettingsGrid);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.OKBtn);
|
|
this.splitContainer1.Panel2.Controls.Add(this.CancelBtn);
|
|
this.splitContainer1.Size = new System.Drawing.Size(415, 317);
|
|
this.splitContainer1.SplitterDistance = 284;
|
|
this.splitContainer1.TabIndex = 0;
|
|
//
|
|
// SettingsGrid
|
|
//
|
|
this.SettingsGrid.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.SettingsGrid.Location = new System.Drawing.Point(0, 0);
|
|
this.SettingsGrid.Name = "SettingsGrid";
|
|
this.SettingsGrid.Size = new System.Drawing.Size(415, 284);
|
|
this.SettingsGrid.TabIndex = 0;
|
|
//
|
|
// OKBtn
|
|
//
|
|
this.OKBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.OKBtn.Location = new System.Drawing.Point(256, 3);
|
|
this.OKBtn.Name = "OKBtn";
|
|
this.OKBtn.Size = new System.Drawing.Size(75, 23);
|
|
this.OKBtn.TabIndex = 1;
|
|
this.OKBtn.Text = "OK";
|
|
this.OKBtn.UseVisualStyleBackColor = true;
|
|
this.OKBtn.Click += new System.EventHandler(this.OKButton_Click);
|
|
//
|
|
// CancelBtn
|
|
//
|
|
this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.CancelBtn.Location = new System.Drawing.Point(337, 3);
|
|
this.CancelBtn.Name = "CancelBtn";
|
|
this.CancelBtn.Size = new System.Drawing.Size(75, 23);
|
|
this.CancelBtn.TabIndex = 0;
|
|
this.CancelBtn.Text = "Cancel";
|
|
this.CancelBtn.UseVisualStyleBackColor = true;
|
|
this.CancelBtn.Click += new System.EventHandler(this.CancelButton_Click);
|
|
//
|
|
// Settings
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(415, 317);
|
|
this.Controls.Add(this.splitContainer1);
|
|
this.Name = "Settings";
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Settings";
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
private System.Windows.Forms.PropertyGrid SettingsGrid;
|
|
private System.Windows.Forms.Button OKBtn;
|
|
private System.Windows.Forms.Button CancelBtn;
|
|
|
|
}
|
|
} |