|
|
|
|
using DevExpress.XtraEditors;
|
|
|
|
|
using DevExpress.XtraEditors.Controls;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace KGIS.Plugin.LayerProperty.View
|
|
|
|
|
{
|
|
|
|
|
partial class FormImportFeatureSymbology
|
|
|
|
|
{
|
|
|
|
|
/// <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.cmbSelectLayer = new ComboBoxEdit();
|
|
|
|
|
this.labelControl1 = new LabelControl();
|
|
|
|
|
this.btnOpenLayer = new SimpleButton();
|
|
|
|
|
this.groupControl1 = new GroupControl();
|
|
|
|
|
this.rgSymbologyOption = new RadioGroup();
|
|
|
|
|
this.btnOK = new SimpleButton();
|
|
|
|
|
this.btnCancel = new SimpleButton();
|
|
|
|
|
((ISupportInitialize)this.cmbSelectLayer.Properties).BeginInit();
|
|
|
|
|
((ISupportInitialize)this.groupControl1).BeginInit();
|
|
|
|
|
this.groupControl1.SuspendLayout();
|
|
|
|
|
((ISupportInitialize)this.rgSymbologyOption.Properties).BeginInit();
|
|
|
|
|
base.SuspendLayout();
|
|
|
|
|
this.cmbSelectLayer.Location = new Point(54, 22);
|
|
|
|
|
this.cmbSelectLayer.Name = "cmbSelectLayer";
|
|
|
|
|
this.cmbSelectLayer.Properties.Buttons.AddRange(new EditorButton[]
|
|
|
|
|
{
|
|
|
|
|
new EditorButton(ButtonPredefines.Combo)
|
|
|
|
|
});
|
|
|
|
|
this.cmbSelectLayer.Size = new Size(255, 21);
|
|
|
|
|
this.cmbSelectLayer.TabIndex = 0;
|
|
|
|
|
this.labelControl1.Location = new Point(12, 25);
|
|
|
|
|
this.labelControl1.Name = "labelControl1";
|
|
|
|
|
this.labelControl1.Size = new Size(36, 14);
|
|
|
|
|
this.labelControl1.TabIndex = 1;
|
|
|
|
|
this.labelControl1.Text = "图层:";
|
|
|
|
|
this.btnOpenLayer.Location = new Point(327, 20);
|
|
|
|
|
this.btnOpenLayer.Name = "btnOpenLayer";
|
|
|
|
|
this.btnOpenLayer.Size = new Size(75, 23);
|
|
|
|
|
this.btnOpenLayer.TabIndex = 2;
|
|
|
|
|
this.btnOpenLayer.Text = "打开...";
|
|
|
|
|
this.btnOpenLayer.Click += new System.EventHandler(this.btnOpenLayer_Click);
|
|
|
|
|
this.groupControl1.Controls.Add(this.rgSymbologyOption);
|
|
|
|
|
this.groupControl1.Location = new Point(12, 57);
|
|
|
|
|
this.groupControl1.Name = "groupControl1";
|
|
|
|
|
this.groupControl1.Size = new Size(296, 126);
|
|
|
|
|
this.groupControl1.TabIndex = 3;
|
|
|
|
|
this.groupControl1.Text = "导入选项";
|
|
|
|
|
this.rgSymbologyOption.Dock = DockStyle.Fill;
|
|
|
|
|
this.rgSymbologyOption.Location = new Point(2, 21);
|
|
|
|
|
this.rgSymbologyOption.Name = "rgSymbologyOption";
|
|
|
|
|
this.rgSymbologyOption.Properties.Appearance.BackColor = Color.Transparent;
|
|
|
|
|
this.rgSymbologyOption.Properties.Appearance.Options.UseBackColor = true;
|
|
|
|
|
this.rgSymbologyOption.Properties.BorderStyle = BorderStyles.NoBorder;
|
|
|
|
|
this.rgSymbologyOption.Properties.Items.AddRange(new RadioGroupItem[]
|
|
|
|
|
{
|
|
|
|
|
new RadioGroupItem(null, "所有符号使用定义"),
|
|
|
|
|
new RadioGroupItem(null, "仅导入符号"),
|
|
|
|
|
new RadioGroupItem(null, "仅导入分类")
|
|
|
|
|
});
|
|
|
|
|
this.rgSymbologyOption.Size = new Size(292, 103);
|
|
|
|
|
this.rgSymbologyOption.TabIndex = 0;
|
|
|
|
|
this.btnOK.Location = new Point(327, 131);
|
|
|
|
|
this.btnOK.Name = "btnOK";
|
|
|
|
|
this.btnOK.Size = new Size(75, 23);
|
|
|
|
|
this.btnOK.TabIndex = 4;
|
|
|
|
|
this.btnOK.Text = "确定";
|
|
|
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
|
|
|
this.btnCancel.DialogResult = DialogResult.Cancel;
|
|
|
|
|
this.btnCancel.Location = new Point(327, 160);
|
|
|
|
|
this.btnCancel.Name = "btnCancel";
|
|
|
|
|
this.btnCancel.Size = new Size(75, 23);
|
|
|
|
|
this.btnCancel.TabIndex = 5;
|
|
|
|
|
this.btnCancel.Text = "取消";
|
|
|
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
|
|
|
base.AcceptButton = this.btnOK;
|
|
|
|
|
base.AutoScaleDimensions = new SizeF(6f, 12f);
|
|
|
|
|
base.AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
base.CancelButton = this.btnCancel;
|
|
|
|
|
base.ClientSize = new Size(414, 195);
|
|
|
|
|
base.Controls.Add(this.btnCancel);
|
|
|
|
|
base.Controls.Add(this.btnOK);
|
|
|
|
|
base.Controls.Add(this.groupControl1);
|
|
|
|
|
base.Controls.Add(this.btnOpenLayer);
|
|
|
|
|
base.Controls.Add(this.labelControl1);
|
|
|
|
|
base.Controls.Add(this.cmbSelectLayer);
|
|
|
|
|
base.FormBorderStyle = FormBorderStyle.FixedDialog;
|
|
|
|
|
base.MaximizeBox = false;
|
|
|
|
|
base.MinimizeBox = false;
|
|
|
|
|
base.Name = "FormImportFeatureSymbology";
|
|
|
|
|
base.ShowIcon = false;
|
|
|
|
|
base.ShowInTaskbar = false;
|
|
|
|
|
base.StartPosition = FormStartPosition.CenterParent;
|
|
|
|
|
this.Text = "导入符号渲染";
|
|
|
|
|
((ISupportInitialize)this.cmbSelectLayer.Properties).EndInit();
|
|
|
|
|
((ISupportInitialize)this.groupControl1).EndInit();
|
|
|
|
|
this.groupControl1.ResumeLayout(false);
|
|
|
|
|
((ISupportInitialize)this.rgSymbologyOption.Properties).EndInit();
|
|
|
|
|
base.ResumeLayout(false);
|
|
|
|
|
base.PerformLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
private ComboBoxEdit cmbSelectLayer;
|
|
|
|
|
private LabelControl labelControl1;
|
|
|
|
|
private SimpleButton btnOpenLayer;
|
|
|
|
|
private GroupControl groupControl1;
|
|
|
|
|
private RadioGroup rgSymbologyOption;
|
|
|
|
|
private SimpleButton btnOK;
|
|
|
|
|
private SimpleButton btnCancel;
|
|
|
|
|
}
|
|
|
|
|
}
|