프로젝트

일반

사용자정보

통계
| 개정판:

hytos / DTI_PID / SPPIDConverter_CustomCommand / ConverterForm.Designer.cs @ 7da8145f

이력 | 보기 | 이력해설 | 다운로드 (13.7 KB)

1 d57a5303 gaqhf
/*---------------------------------------------------------------------+\
2
|                                                                       |
3
|        Copyright 2016 Intergraph Corporation                          |
4
|        All Rights Reserved                                            |
5
|                                                                       |
6
|        Including software, file formats, and audio-visual displays;   |
7
|        may only be used pursuant to applicable software license       |
8
|        agreement; contains confidential and proprietary information of|
9
|        Intergraph and/or third parties which is protected by copyright|
10
|        and trade secret law and may not be provided or otherwise made |
11
|        available without proper authorization.                        |
12
|                                                                       |
13
|        Unpublished -- rights reserved under the Copyright Laws of the |
14
|        United States.                                                 |
15
|                                                                       |
16
|        Intergraph Corporation                                         |
17
|        Huntsville, Alabama         35894-0001                         |
18
|                                                                       |
19
\+---------------------------------------------------------------------*/
20
21
namespace CustomCommand
22
{
23
    partial class ConverterForm
24
    {
25
        /// <summary>
26
        /// Required designer variable.
27
        /// </summary>
28
        private System.ComponentModel.IContainer components = null;
29
30
        /// <summary>
31
        /// Clean up any resources being used.
32
        /// </summary>
33
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
34
        protected override void Dispose(bool disposing)
35
        {
36
            if (disposing && (components != null))
37
            {
38
                components.Dispose();
39
            }
40
            base.Dispose(disposing);
41
        }
42
43
        #region Windows Form Designer generated code
44
45
        /// <summary>
46
        /// Required method for Designer support - do not modify
47
        /// the contents of this method with the code editor.
48
        /// </summary>
49
        private void InitializeComponent()
50
        {
51
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConverterForm));
52 022cae08 gaqhf
            System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Drawing");
53 d57a5303 gaqhf
            this.commandControl = new Ingr.RAD2D.MacroControls.CmdCtrl.IgCommand();
54 022cae08 gaqhf
            this.menuStrip = new System.Windows.Forms.MenuStrip();
55
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
56
            this.openDocumentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
57
            this.toolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
58
            this.itemMappingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
59
            this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
60
            this.convertToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
61
            this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
62
            this.statusStrip = new System.Windows.Forms.StatusStrip();
63
            this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
64
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
65
            this.treeViewDrawing = new System.Windows.Forms.TreeView();
66
            this.listBoxLog = new System.Windows.Forms.ListBox();
67 d57a5303 gaqhf
            ((System.ComponentModel.ISupportInitialize)(this.commandControl)).BeginInit();
68 022cae08 gaqhf
            this.menuStrip.SuspendLayout();
69
            this.statusStrip.SuspendLayout();
70
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
71
            this.splitContainer1.Panel1.SuspendLayout();
72
            this.splitContainer1.Panel2.SuspendLayout();
73
            this.splitContainer1.SuspendLayout();
74 d57a5303 gaqhf
            this.SuspendLayout();
75
            // 
76
            // commandControl
77
            // 
78
            this.commandControl.Enabled = true;
79
            this.commandControl.Location = new System.Drawing.Point(0, 0);
80
            this.commandControl.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
81
            this.commandControl.Name = "commandControl";
82
            this.commandControl.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("commandControl.OcxState")));
83
            this.commandControl.Size = new System.Drawing.Size(28, 28);
84
            this.commandControl.TabIndex = 0;
85
            this.commandControl.Activate += new System.EventHandler(this.commandControl_Activate);
86
            this.commandControl.Deactivate += new System.EventHandler(this.commandControl_Deactivate);
87
            this.commandControl.Terminate += new System.EventHandler(this.commandControl_Terminate);
88
            this.commandControl.Initialize += new System.EventHandler(this.commandControl_Initialize);
89
            // 
90 022cae08 gaqhf
            // menuStrip
91 d57a5303 gaqhf
            // 
92 022cae08 gaqhf
            this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
93
            this.openToolStripMenuItem,
94
            this.toolToolStripMenuItem,
95
            this.convertToolStripMenuItem,
96
            this.stopToolStripMenuItem});
97
            this.menuStrip.Location = new System.Drawing.Point(0, 0);
98
            this.menuStrip.Name = "menuStrip";
99
            this.menuStrip.Size = new System.Drawing.Size(570, 24);
100
            this.menuStrip.TabIndex = 2;
101
            this.menuStrip.Text = "menuStrip1";
102
            // 
103
            // openToolStripMenuItem
104
            // 
105
            this.openToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
106
            this.openDocumentsToolStripMenuItem});
107
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
108
            this.openToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
109
            this.openToolStripMenuItem.Text = "&Open";
110
            // 
111
            // openDocumentsToolStripMenuItem
112
            // 
113
            this.openDocumentsToolStripMenuItem.Name = "openDocumentsToolStripMenuItem";
114
            this.openDocumentsToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
115
            this.openDocumentsToolStripMenuItem.Text = "Open Document(s)";
116
            this.openDocumentsToolStripMenuItem.Click += new System.EventHandler(this.openDocumentsToolStripMenuItem_Click);
117
            // 
118
            // toolToolStripMenuItem
119
            // 
120
            this.toolToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
121
            this.itemMappingToolStripMenuItem,
122
            this.importToolStripMenuItem});
123
            this.toolToolStripMenuItem.Name = "toolToolStripMenuItem";
124
            this.toolToolStripMenuItem.Size = new System.Drawing.Size(42, 20);
125
            this.toolToolStripMenuItem.Text = "&Tool";
126
            // 
127
            // itemMappingToolStripMenuItem
128
            // 
129
            this.itemMappingToolStripMenuItem.Name = "itemMappingToolStripMenuItem";
130
            this.itemMappingToolStripMenuItem.Size = new System.Drawing.Size(163, 22);
131
            this.itemMappingToolStripMenuItem.Text = "Item Mapping";
132
            this.itemMappingToolStripMenuItem.Click += new System.EventHandler(this.itemMappingToolStripMenuItem_Click);
133
            // 
134
            // importToolStripMenuItem
135
            // 
136
            this.importToolStripMenuItem.Name = "importToolStripMenuItem";
137
            this.importToolStripMenuItem.Size = new System.Drawing.Size(163, 22);
138
            this.importToolStripMenuItem.Text = "Import Excel File";
139
            this.importToolStripMenuItem.Click += new System.EventHandler(this.importToolStripMenuItem_Click);
140
            // 
141
            // convertToolStripMenuItem
142
            // 
143
            this.convertToolStripMenuItem.Name = "convertToolStripMenuItem";
144
            this.convertToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
145
            this.convertToolStripMenuItem.Text = "&Convert";
146
            this.convertToolStripMenuItem.Click += new System.EventHandler(this.convertToolStripMenuItem_Click);
147
            // 
148
            // stopToolStripMenuItem
149
            // 
150
            this.stopToolStripMenuItem.Enabled = false;
151
            this.stopToolStripMenuItem.Name = "stopToolStripMenuItem";
152
            this.stopToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
153
            this.stopToolStripMenuItem.Text = "&Stop";
154
            this.stopToolStripMenuItem.Click += new System.EventHandler(this.stopToolStripMenuItem_Click);
155
            // 
156
            // statusStrip
157
            // 
158
            this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
159
            this.toolStripProgressBar});
160
            this.statusStrip.Location = new System.Drawing.Point(0, 425);
161
            this.statusStrip.Name = "statusStrip";
162
            this.statusStrip.Size = new System.Drawing.Size(570, 26);
163
            this.statusStrip.TabIndex = 3;
164
            this.statusStrip.Text = "statusStrip1";
165
            // 
166
            // toolStripProgressBar
167
            // 
168
            this.toolStripProgressBar.Name = "toolStripProgressBar";
169
            this.toolStripProgressBar.Size = new System.Drawing.Size(130, 20);
170
            this.toolStripProgressBar.Step = 1;
171
            // 
172
            // splitContainer1
173
            // 
174
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
175
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
176
            this.splitContainer1.Location = new System.Drawing.Point(0, 24);
177
            this.splitContainer1.Name = "splitContainer1";
178
            // 
179
            // splitContainer1.Panel1
180
            // 
181
            this.splitContainer1.Panel1.Controls.Add(this.treeViewDrawing);
182
            // 
183
            // splitContainer1.Panel2
184
            // 
185
            this.splitContainer1.Panel2.Controls.Add(this.listBoxLog);
186
            this.splitContainer1.Size = new System.Drawing.Size(570, 401);
187
            this.splitContainer1.SplitterDistance = 218;
188
            this.splitContainer1.TabIndex = 4;
189
            // 
190
            // treeViewDrawing
191
            // 
192
            this.treeViewDrawing.CheckBoxes = true;
193
            this.treeViewDrawing.Dock = System.Windows.Forms.DockStyle.Fill;
194
            this.treeViewDrawing.Location = new System.Drawing.Point(0, 0);
195
            this.treeViewDrawing.Name = "treeViewDrawing";
196
            treeNode1.Name = "Drawing";
197
            treeNode1.Text = "Drawing";
198
            this.treeViewDrawing.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
199
            treeNode1});
200
            this.treeViewDrawing.ShowRootLines = false;
201
            this.treeViewDrawing.Size = new System.Drawing.Size(218, 401);
202
            this.treeViewDrawing.TabIndex = 0;
203
            // 
204
            // listBoxLog
205
            // 
206
            this.listBoxLog.Dock = System.Windows.Forms.DockStyle.Fill;
207
            this.listBoxLog.FormattingEnabled = true;
208
            this.listBoxLog.ItemHeight = 12;
209
            this.listBoxLog.Location = new System.Drawing.Point(0, 0);
210
            this.listBoxLog.Name = "listBoxLog";
211
            this.listBoxLog.Size = new System.Drawing.Size(348, 401);
212
            this.listBoxLog.TabIndex = 0;
213 d57a5303 gaqhf
            // 
214
            // ConverterForm
215
            // 
216
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
217
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
218 022cae08 gaqhf
            this.ClientSize = new System.Drawing.Size(570, 451);
219
            this.Controls.Add(this.splitContainer1);
220
            this.Controls.Add(this.statusStrip);
221
            this.Controls.Add(this.menuStrip);
222 d57a5303 gaqhf
            this.Controls.Add(this.commandControl);
223 022cae08 gaqhf
            this.MainMenuStrip = this.menuStrip;
224 d57a5303 gaqhf
            this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
225
            this.Name = "ConverterForm";
226
            this.Text = "SPPIDConverter_CustomCommand";
227
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ConverterForm_FormClosing);
228
            ((System.ComponentModel.ISupportInitialize)(this.commandControl)).EndInit();
229 022cae08 gaqhf
            this.menuStrip.ResumeLayout(false);
230
            this.menuStrip.PerformLayout();
231
            this.statusStrip.ResumeLayout(false);
232
            this.statusStrip.PerformLayout();
233
            this.splitContainer1.Panel1.ResumeLayout(false);
234
            this.splitContainer1.Panel2.ResumeLayout(false);
235
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
236
            this.splitContainer1.ResumeLayout(false);
237 d57a5303 gaqhf
            this.ResumeLayout(false);
238 022cae08 gaqhf
            this.PerformLayout();
239 d57a5303 gaqhf
240
        }
241
242
        #endregion
243
244
        public Ingr.RAD2D.MacroControls.CmdCtrl.IgCommand commandControl;
245 022cae08 gaqhf
        private System.Windows.Forms.MenuStrip menuStrip;
246
        private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
247
        private System.Windows.Forms.ToolStripMenuItem openDocumentsToolStripMenuItem;
248
        private System.Windows.Forms.ToolStripMenuItem toolToolStripMenuItem;
249
        private System.Windows.Forms.ToolStripMenuItem itemMappingToolStripMenuItem;
250
        private System.Windows.Forms.ToolStripMenuItem importToolStripMenuItem;
251
        private System.Windows.Forms.ToolStripMenuItem convertToolStripMenuItem;
252
        private System.Windows.Forms.ToolStripMenuItem stopToolStripMenuItem;
253
        private System.Windows.Forms.StatusStrip statusStrip;
254
        private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar;
255
        private System.Windows.Forms.SplitContainer splitContainer1;
256
        private System.Windows.Forms.ListBox listBoxLog;
257
        private System.Windows.Forms.TreeView treeViewDrawing;
258 d57a5303 gaqhf
    }
259
}
클립보드 이미지 추가 (최대 크기: 500 MB)