-
Notifications
You must be signed in to change notification settings - Fork 2
/
GetSymbolByControl.designer.cs
142 lines (136 loc) · 6.59 KB
/
GetSymbolByControl.designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
namespace WindowsFormsApplication1
{
partial class GetSymbolByControl
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GetSymbolByControl));
this.label1 = new System.Windows.Forms.Label();
this.cbxStyles = new System.Windows.Forms.ComboBox();
this.btnOtherStyles = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.axSymbologyControl1 = new ESRI.ArcGIS.Controls.AxSymbologyControl();
this.btnOK = new System.Windows.Forms.Button();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.groupBox3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.axSymbologyControl1)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(77, 12);
this.label1.TabIndex = 12;
this.label1.Text = "选择样式库:";
//
// cbxStyles
//
this.cbxStyles.FormattingEnabled = true;
this.cbxStyles.Location = new System.Drawing.Point(94, 6);
this.cbxStyles.Name = "cbxStyles";
this.cbxStyles.Size = new System.Drawing.Size(305, 20);
this.cbxStyles.TabIndex = 11;
this.cbxStyles.SelectedIndexChanged += new System.EventHandler(this.cbxStyles_SelectedIndexChanged);
//
// btnOtherStyles
//
this.btnOtherStyles.Location = new System.Drawing.Point(405, 4);
this.btnOtherStyles.Name = "btnOtherStyles";
this.btnOtherStyles.Size = new System.Drawing.Size(40, 25);
this.btnOtherStyles.TabIndex = 10;
this.btnOtherStyles.Text = "其它";
this.btnOtherStyles.Click += new System.EventHandler(this.btnOtherStyles_Click);
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(451, 225);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(65, 25);
this.btnClose.TabIndex = 9;
this.btnClose.Text = "关 闭";
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.axSymbologyControl1);
this.groupBox3.Location = new System.Drawing.Point(8, 35);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(440, 310);
this.groupBox3.TabIndex = 7;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Symbology";
//
// axSymbologyControl1
//
this.axSymbologyControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.axSymbologyControl1.Location = new System.Drawing.Point(3, 17);
this.axSymbologyControl1.Name = "axSymbologyControl1";
this.axSymbologyControl1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axSymbologyControl1.OcxState")));
this.axSymbologyControl1.Size = new System.Drawing.Size(434, 290);
this.axSymbologyControl1.TabIndex = 0;
this.axSymbologyControl1.OnItemSelected += new ESRI.ArcGIS.Controls.ISymbologyControlEvents_Ax_OnItemSelectedEventHandler(this.axSymbologyControl1_OnItemSelected);
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(451, 127);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(65, 25);
this.btnOK.TabIndex = 8;
this.btnOK.Text = "确 定";
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// GetSymbolByControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.ClientSize = new System.Drawing.Size(521, 365);
this.Controls.Add(this.label1);
this.Controls.Add(this.cbxStyles);
this.Controls.Add(this.btnOtherStyles);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.btnOK);
this.Name = "GetSymbolByControl";
this.Text = "选择样式符号";
this.Load += new System.EventHandler(this.GetSymbolByControl_Load);
this.groupBox3.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.axSymbologyControl1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox cbxStyles;
private System.Windows.Forms.Button btnOtherStyles;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.GroupBox groupBox3;
private ESRI.ArcGIS.Controls.AxSymbologyControl axSymbologyControl1;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
}
}