|
|
|
|
|
namespace GeoSigmaViewer
|
|
|
|
|
|
{
|
|
|
|
|
|
partial class ProportionDialog
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <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.propertyGrid = new System.Windows.Forms.PropertyGrid();
|
|
|
|
|
|
this.okButton = new System.Windows.Forms.Button();
|
|
|
|
|
|
this.cancelButton = new System.Windows.Forms.Button();
|
|
|
|
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
|
|
|
|
this.panel1.SuspendLayout();
|
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
|
//
|
|
|
|
|
|
// propertyGrid
|
|
|
|
|
|
//
|
|
|
|
|
|
this.propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
|
this.propertyGrid.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
|
this.propertyGrid.Name = "propertyGrid";
|
|
|
|
|
|
this.propertyGrid.Size = new System.Drawing.Size(316, 507);
|
|
|
|
|
|
this.propertyGrid.TabIndex = 0;
|
|
|
|
|
|
//
|
|
|
|
|
|
// okButton
|
|
|
|
|
|
//
|
|
|
|
|
|
this.okButton.Dock = System.Windows.Forms.DockStyle.Left;
|
|
|
|
|
|
this.okButton.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
|
this.okButton.Margin = new System.Windows.Forms.Padding(10, 3, 3, 3);
|
|
|
|
|
|
this.okButton.Name = "okButton";
|
|
|
|
|
|
this.okButton.Size = new System.Drawing.Size(75, 30);
|
|
|
|
|
|
this.okButton.TabIndex = 1;
|
|
|
|
|
|
this.okButton.Text = "确定";
|
|
|
|
|
|
this.okButton.UseVisualStyleBackColor = true;
|
|
|
|
|
|
this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
|
|
|
|
|
//
|
|
|
|
|
|
// cancelButton
|
|
|
|
|
|
//
|
|
|
|
|
|
this.cancelButton.Dock = System.Windows.Forms.DockStyle.Right;
|
|
|
|
|
|
this.cancelButton.Location = new System.Drawing.Point(241, 0);
|
|
|
|
|
|
this.cancelButton.Name = "cancelButton";
|
|
|
|
|
|
this.cancelButton.Size = new System.Drawing.Size(75, 30);
|
|
|
|
|
|
this.cancelButton.TabIndex = 2;
|
|
|
|
|
|
this.cancelButton.Text = "取消";
|
|
|
|
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|
|
|
|
|
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
|
|
|
|
|
//
|
|
|
|
|
|
// panel1
|
|
|
|
|
|
//
|
|
|
|
|
|
this.panel1.Controls.Add(this.okButton);
|
|
|
|
|
|
this.panel1.Controls.Add(this.cancelButton);
|
|
|
|
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
|
|
|
|
this.panel1.Location = new System.Drawing.Point(0, 477);
|
|
|
|
|
|
this.panel1.Name = "panel1";
|
|
|
|
|
|
this.panel1.Size = new System.Drawing.Size(316, 30);
|
|
|
|
|
|
this.panel1.TabIndex = 3;
|
|
|
|
|
|
//
|
|
|
|
|
|
// ProportionDialog
|
|
|
|
|
|
//
|
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(316, 507);
|
|
|
|
|
|
this.Controls.Add(this.panel1);
|
|
|
|
|
|
this.Controls.Add(this.propertyGrid);
|
|
|
|
|
|
this.Name = "ProportionDialog";
|
|
|
|
|
|
this.Text = "比例参数设置";
|
|
|
|
|
|
this.TopMost = true;
|
|
|
|
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ProportionDialog_FormClosed);
|
|
|
|
|
|
this.Load += new System.EventHandler(this.ProportionDialog_Load);
|
|
|
|
|
|
this.panel1.ResumeLayout(false);
|
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.PropertyGrid propertyGrid;
|
|
|
|
|
|
private System.Windows.Forms.Button okButton;
|
|
|
|
|
|
private System.Windows.Forms.Button cancelButton;
|
|
|
|
|
|
private System.Windows.Forms.Panel panel1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|