hytos / DTI_PID / SPPIDConverter_CustomCommand / MappingForm.Designer.cs @ 4582b1d2
이력 | 보기 | 이력해설 | 다운로드 (5.38 KB)
1 |
namespace CustomCommand |
---|---|
2 |
{ |
3 |
partial class MappingForm |
4 |
{ |
5 |
/// <summary> |
6 |
/// Required designer variable. |
7 |
/// </summary> |
8 |
private System.ComponentModel.IContainer components = null; |
9 |
|
10 |
/// <summary> |
11 |
/// Clean up any resources being used. |
12 |
/// </summary> |
13 |
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
14 |
protected override void Dispose(bool disposing) |
15 |
{ |
16 |
if (disposing && (components != null)) |
17 |
{ |
18 |
components.Dispose(); |
19 |
} |
20 |
base.Dispose(disposing); |
21 |
} |
22 |
|
23 |
#region Windows Form Designer generated code |
24 |
|
25 |
/// <summary> |
26 |
/// Required method for Designer support - do not modify |
27 |
/// the contents of this method with the code editor. |
28 |
/// </summary> |
29 |
private void InitializeComponent() |
30 |
{ |
31 |
this.btnOK = new System.Windows.Forms.Button(); |
32 |
this.btnCancel = new System.Windows.Forms.Button(); |
33 |
this.dgvMapping = new System.Windows.Forms.DataGridView(); |
34 |
this.splitContainer1 = new System.Windows.Forms.SplitContainer(); |
35 |
((System.ComponentModel.ISupportInitialize)(this.dgvMapping)).BeginInit(); |
36 |
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); |
37 |
this.splitContainer1.Panel1.SuspendLayout(); |
38 |
this.splitContainer1.Panel2.SuspendLayout(); |
39 |
this.splitContainer1.SuspendLayout(); |
40 |
this.SuspendLayout(); |
41 |
// |
42 |
// btnOK |
43 |
// |
44 |
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); |
45 |
this.btnOK.Location = new System.Drawing.Point(713, 3); |
46 |
this.btnOK.Name = "btnOK"; |
47 |
this.btnOK.Size = new System.Drawing.Size(75, 23); |
48 |
this.btnOK.TabIndex = 0; |
49 |
this.btnOK.Text = "OK"; |
50 |
this.btnOK.UseVisualStyleBackColor = true; |
51 |
this.btnOK.Click += new System.EventHandler(this.btnOK_Click); |
52 |
// |
53 |
// btnCancel |
54 |
// |
55 |
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); |
56 |
this.btnCancel.Location = new System.Drawing.Point(794, 3); |
57 |
this.btnCancel.Name = "btnCancel"; |
58 |
this.btnCancel.Size = new System.Drawing.Size(75, 23); |
59 |
this.btnCancel.TabIndex = 1; |
60 |
this.btnCancel.Text = "Cancel"; |
61 |
this.btnCancel.UseVisualStyleBackColor = true; |
62 |
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); |
63 |
// |
64 |
// dgvMapping |
65 |
// |
66 |
this.dgvMapping.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; |
67 |
this.dgvMapping.Dock = System.Windows.Forms.DockStyle.Fill; |
68 |
this.dgvMapping.Location = new System.Drawing.Point(0, 0); |
69 |
this.dgvMapping.Name = "dgvMapping"; |
70 |
this.dgvMapping.RowTemplate.Height = 23; |
71 |
this.dgvMapping.Size = new System.Drawing.Size(872, 518); |
72 |
this.dgvMapping.TabIndex = 2; |
73 |
// |
74 |
// splitContainer1 |
75 |
// |
76 |
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; |
77 |
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; |
78 |
this.splitContainer1.IsSplitterFixed = true; |
79 |
this.splitContainer1.Location = new System.Drawing.Point(0, 0); |
80 |
this.splitContainer1.Name = "splitContainer1"; |
81 |
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; |
82 |
// |
83 |
// splitContainer1.Panel1 |
84 |
// |
85 |
this.splitContainer1.Panel1.Controls.Add(this.dgvMapping); |
86 |
// |
87 |
// splitContainer1.Panel2 |
88 |
// |
89 |
this.splitContainer1.Panel2.Controls.Add(this.btnOK); |
90 |
this.splitContainer1.Panel2.Controls.Add(this.btnCancel); |
91 |
this.splitContainer1.Size = new System.Drawing.Size(872, 551); |
92 |
this.splitContainer1.SplitterDistance = 518; |
93 |
this.splitContainer1.TabIndex = 3; |
94 |
// |
95 |
// MappingForm |
96 |
// |
97 |
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); |
98 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
99 |
this.ClientSize = new System.Drawing.Size(872, 551); |
100 |
this.Controls.Add(this.splitContainer1); |
101 |
this.Name = "MappingForm"; |
102 |
this.Text = "MappingForm"; |
103 |
this.Load += new System.EventHandler(this.MappingForm_Load); |
104 |
((System.ComponentModel.ISupportInitialize)(this.dgvMapping)).EndInit(); |
105 |
this.splitContainer1.Panel1.ResumeLayout(false); |
106 |
this.splitContainer1.Panel2.ResumeLayout(false); |
107 |
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); |
108 |
this.splitContainer1.ResumeLayout(false); |
109 |
this.ResumeLayout(false); |
110 |
|
111 |
} |
112 |
|
113 |
#endregion |
114 |
|
115 |
private System.Windows.Forms.Button btnOK; |
116 |
private System.Windows.Forms.Button btnCancel; |
117 |
private System.Windows.Forms.DataGridView dgvMapping; |
118 |
private System.Windows.Forms.SplitContainer splitContainer1; |
119 |
} |
120 |
} |