You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
5.3 KiB
123 lines
5.3 KiB
using DevExpress.Utils; |
|
using DevExpress.XtraEditors; |
|
using System.ComponentModel; |
|
using System.Drawing; |
|
|
|
namespace KGIS.Plugin.LayerProperty.View |
|
{ |
|
partial class FormAddValue |
|
{ |
|
/// <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(); |
|
this.listValue = new ListBoxControl(); |
|
this.btnOk = new SimpleButton(); |
|
this.btnCancel = new SimpleButton(); |
|
this.btnShowAll = new SimpleButton(); |
|
this.groupControl1 = new GroupControl(); |
|
this.btnAddNew = new SimpleButton(); |
|
this.txtValue = new TextEdit(); |
|
((ISupportInitialize)this.listValue).BeginInit(); |
|
((ISupportInitialize)this.groupControl1).BeginInit(); |
|
this.groupControl1.SuspendLayout(); |
|
((ISupportInitialize)this.txtValue.Properties).BeginInit(); |
|
base.SuspendLayout(); |
|
this.listValue.Location = new Point(12, 25); |
|
this.listValue.Name = "listValue"; |
|
this.listValue.Size = new Size(150, 139); |
|
this.listValue.TabIndex = 0; |
|
this.listValue.SelectedValueChanged += new System.EventHandler(this.listValue_SelectedValueChanged); |
|
this.listValue.Click += new System.EventHandler(this.listValue_Click); |
|
this.btnOk.Enabled = false; |
|
this.btnOk.Location = new Point(183, 25); |
|
this.btnOk.Name = "btnOk"; |
|
this.btnOk.Size = new Size(75, 23); |
|
this.btnOk.TabIndex = 1; |
|
this.btnOk.Text = "确定"; |
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click); |
|
this.btnCancel.Location = new Point(183, 54); |
|
this.btnCancel.Name = "btnCancel"; |
|
this.btnCancel.Size = new Size(75, 23); |
|
this.btnCancel.TabIndex = 2; |
|
this.btnCancel.Text = "取消"; |
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); |
|
this.btnShowAll.Location = new Point(17, 170); |
|
this.btnShowAll.Name = "btnShowAll"; |
|
this.btnShowAll.Size = new Size(135, 23); |
|
this.btnShowAll.TabIndex = 3; |
|
this.btnShowAll.Text = "获得所有值"; |
|
this.btnShowAll.Click += new System.EventHandler(this.btnShowAll_Click); |
|
this.groupControl1.Controls.Add(this.btnAddNew); |
|
this.groupControl1.Controls.Add(this.txtValue); |
|
this.groupControl1.Location = new Point(12, 199); |
|
this.groupControl1.Name = "groupControl1"; |
|
this.groupControl1.Size = new Size(256, 66); |
|
this.groupControl1.TabIndex = 4; |
|
this.groupControl1.Text = "新值"; |
|
this.btnAddNew.Location = new Point(171, 33); |
|
this.btnAddNew.Name = "btnAddNew"; |
|
this.btnAddNew.Size = new Size(75, 23); |
|
this.btnAddNew.TabIndex = 1; |
|
this.btnAddNew.Text = "添加到列表"; |
|
this.btnAddNew.Click += new System.EventHandler(this.btnAddNew_Click); |
|
this.txtValue.Location = new Point(5, 35); |
|
this.txtValue.Name = "txtValue"; |
|
this.txtValue.Properties.EditFormat.FormatType = FormatType.Numeric; |
|
this.txtValue.Size = new Size(160, 21); |
|
this.txtValue.TabIndex = 0; |
|
base.AutoScaleDimensions = new SizeF(6f, 12f); |
|
base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
|
base.ClientSize = new Size(274, 277); |
|
base.Controls.Add(this.groupControl1); |
|
base.Controls.Add(this.btnShowAll); |
|
base.Controls.Add(this.btnCancel); |
|
base.Controls.Add(this.btnOk); |
|
base.Controls.Add(this.listValue); |
|
base.MaximizeBox = false; |
|
base.MinimizeBox = false; |
|
base.Name = "FormAddValue"; |
|
base.ShowIcon = false; |
|
base.ShowInTaskbar = false; |
|
base.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; |
|
this.Text = "增加值"; |
|
((ISupportInitialize)this.listValue).EndInit(); |
|
((ISupportInitialize)this.groupControl1).EndInit(); |
|
this.groupControl1.ResumeLayout(false); |
|
((ISupportInitialize)this.txtValue.Properties).EndInit(); |
|
base.ResumeLayout(false); |
|
} |
|
|
|
#endregion |
|
private SimpleButton btnOk; |
|
private SimpleButton btnCancel; |
|
private SimpleButton btnShowAll; |
|
private GroupControl groupControl1; |
|
private TextEdit txtValue; |
|
private SimpleButton btnAddNew; |
|
public ListBoxControl listValue; |
|
} |
|
} |