|
|
|
|
using DevExpress.XtraEditors;
|
|
|
|
|
using DevExpress.XtraEditors.Controls;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace KGIS.Plugin.LayerProperty.View.UC_Controls
|
|
|
|
|
{
|
|
|
|
|
partial class UCFieldsCombox
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 必需的设计器变量。
|
|
|
|
|
/// </summary>
|
|
|
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 清理所有正在使用的资源。
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (disposing && (components != null))
|
|
|
|
|
{
|
|
|
|
|
components.Dispose();
|
|
|
|
|
}
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region 组件设计器生成的代码
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设计器支持所需的方法 - 不要修改
|
|
|
|
|
/// 使用代码编辑器修改此方法的内容。
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
|
|
|
|
components = new System.ComponentModel.Container();
|
|
|
|
|
this.cmbFields = new ComboBoxEdit();
|
|
|
|
|
this.chkUseAliasName = new CheckEdit();
|
|
|
|
|
((ISupportInitialize)this.cmbFields.Properties).BeginInit();
|
|
|
|
|
((ISupportInitialize)this.chkUseAliasName.Properties).BeginInit();
|
|
|
|
|
base.SuspendLayout();
|
|
|
|
|
this.cmbFields.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right);
|
|
|
|
|
this.cmbFields.Location = new Point(1, 1);
|
|
|
|
|
this.cmbFields.Name = "cmbFields";
|
|
|
|
|
this.cmbFields.Properties.Buttons.AddRange(new EditorButton[]
|
|
|
|
|
{
|
|
|
|
|
new EditorButton(ButtonPredefines.Combo)
|
|
|
|
|
});
|
|
|
|
|
this.cmbFields.Properties.TextEditStyle = TextEditStyles.DisableTextEditor;
|
|
|
|
|
this.cmbFields.Size = new Size(139, 21);
|
|
|
|
|
this.cmbFields.TabIndex = 0;
|
|
|
|
|
this.cmbFields.SelectedIndexChanged += new System.EventHandler(this.cmbFields_SelectedIndexChanged);
|
|
|
|
|
this.chkUseAliasName.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
|
|
|
|
|
this.chkUseAliasName.Location = new Point(146, 3);
|
|
|
|
|
this.chkUseAliasName.Name = "chkUseAliasName";
|
|
|
|
|
this.chkUseAliasName.Properties.Caption = "显示别名";
|
|
|
|
|
this.chkUseAliasName.Size = new Size(75, 19);
|
|
|
|
|
this.chkUseAliasName.TabIndex = 10;
|
|
|
|
|
this.chkUseAliasName.CheckedChanged += new System.EventHandler(this.chkUseAliasName_CheckedChanged);
|
|
|
|
|
base.AutoScaleDimensions = new SizeF(6f, 12f);
|
|
|
|
|
base.AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
base.Controls.Add(this.chkUseAliasName);
|
|
|
|
|
base.Controls.Add(this.cmbFields);
|
|
|
|
|
base.Name = "UCFieldsCombox";
|
|
|
|
|
base.Size = new Size(224, 22);
|
|
|
|
|
((ISupportInitialize)this.cmbFields.Properties).EndInit();
|
|
|
|
|
((ISupportInitialize)this.chkUseAliasName.Properties).EndInit();
|
|
|
|
|
base.ResumeLayout(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
private ComboBoxEdit cmbFields;
|
|
|
|
|
private CheckEdit chkUseAliasName;
|
|
|
|
|
}
|
|
|
|
|
}
|