개정판 bc83db04
issue #00000
- TableLayoutPanelHelper 추가
Change-Id: Ia3a5b9132a1637046e980ceda59eab167f342469
ID2.Manager/ID2.Manager.Common/Helpers/TableLayoutPanelHelper.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
|
|
7 |
namespace ID2.Manager.Common.Helpers |
|
8 |
{ |
|
9 |
|
|
10 |
/// <summary> |
|
11 |
/// Double Buffered function . |
|
12 |
/// </summary> |
|
13 |
public static class TableLayoutPanelHelper |
|
14 |
{ |
|
15 |
public static void SetDoubleBuffered(System.Windows.Forms.Control c) |
|
16 |
{ |
|
17 |
if (System.Windows.Forms.SystemInformation.TerminalServerSession) |
|
18 |
return; |
|
19 |
System.Reflection.PropertyInfo aProp = typeof(System.Windows.Forms.Control).GetProperty("DoubleBuffered", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance); |
|
20 |
aProp.SetValue(c, true, null); |
|
21 |
} |
|
22 |
} |
|
23 |
} |
ID2.Manager/ID2.Manager/Controls/BriefAndImages.Designer.cs | ||
---|---|---|
30 | 30 |
private void InitializeComponent() |
31 | 31 |
{ |
32 | 32 |
this.LayoutRoot = new System.Windows.Forms.TableLayoutPanel(); |
33 |
this.LayoutBrief = new System.Windows.Forms.TableLayoutPanel(); |
|
34 |
this.lbBrief = new System.Windows.Forms.Label(); |
|
35 | 33 |
this.LayoutImages = new System.Windows.Forms.TableLayoutPanel(); |
36 |
this.lstFrImages = new Telerik.WinControls.UI.RadListView(); |
|
37 | 34 |
this.label1 = new System.Windows.Forms.Label(); |
38 | 35 |
this.selectImage = new Telerik.WinControls.UI.RadPictureBox(); |
36 |
this.LayoutDoftech = new System.Windows.Forms.TableLayoutPanel(); |
|
37 |
this.lbBrief = new System.Windows.Forms.Label(); |
|
38 |
this.txtBriefDoftech = new Telerik.WinControls.UI.RadTextBox(); |
|
39 | 39 |
this.lstToImages = new Telerik.WinControls.UI.RadListView(); |
40 |
this.txtBrief = new Telerik.WinControls.UI.RadTextBox(); |
|
40 |
this.LayoutSec = new System.Windows.Forms.TableLayoutPanel(); |
|
41 |
this.lstFrImages = new Telerik.WinControls.UI.RadListView(); |
|
42 |
this.label2 = new System.Windows.Forms.Label(); |
|
43 |
this.txtBriefSec = new Telerik.WinControls.UI.RadTextBox(); |
|
41 | 44 |
this.LayoutRoot.SuspendLayout(); |
42 |
this.LayoutBrief.SuspendLayout(); |
|
43 | 45 |
this.LayoutImages.SuspendLayout(); |
44 |
((System.ComponentModel.ISupportInitialize)(this.lstFrImages)).BeginInit(); |
|
45 | 46 |
((System.ComponentModel.ISupportInitialize)(this.selectImage)).BeginInit(); |
47 |
this.LayoutDoftech.SuspendLayout(); |
|
48 |
((System.ComponentModel.ISupportInitialize)(this.txtBriefDoftech)).BeginInit(); |
|
46 | 49 |
((System.ComponentModel.ISupportInitialize)(this.lstToImages)).BeginInit(); |
47 |
((System.ComponentModel.ISupportInitialize)(this.txtBrief)).BeginInit(); |
|
50 |
this.LayoutSec.SuspendLayout(); |
|
51 |
((System.ComponentModel.ISupportInitialize)(this.lstFrImages)).BeginInit(); |
|
52 |
((System.ComponentModel.ISupportInitialize)(this.txtBriefSec)).BeginInit(); |
|
48 | 53 |
this.SuspendLayout(); |
49 | 54 |
// |
50 | 55 |
// LayoutRoot |
... | ... | |
53 | 58 |
this.LayoutRoot.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
54 | 59 |
this.LayoutRoot.ColumnCount = 1; |
55 | 60 |
this.LayoutRoot.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); |
56 |
this.LayoutRoot.Controls.Add(this.LayoutBrief, 0, 0); |
|
57 |
this.LayoutRoot.Controls.Add(this.LayoutImages, 0, 1); |
|
61 |
this.LayoutRoot.Controls.Add(this.LayoutImages, 0, 2); |
|
62 |
this.LayoutRoot.Controls.Add(this.LayoutDoftech, 0, 0); |
|
63 |
this.LayoutRoot.Controls.Add(this.LayoutSec, 0, 1); |
|
58 | 64 |
this.LayoutRoot.Dock = System.Windows.Forms.DockStyle.Fill; |
59 | 65 |
this.LayoutRoot.Location = new System.Drawing.Point(0, 0); |
60 | 66 |
this.LayoutRoot.Name = "LayoutRoot"; |
61 |
this.LayoutRoot.RowCount = 2; |
|
62 |
this.LayoutRoot.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 18F)); |
|
63 |
this.LayoutRoot.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 82F)); |
|
64 |
this.LayoutRoot.Size = new System.Drawing.Size(248, 595); |
|
67 |
this.LayoutRoot.RowCount = 3; |
|
68 |
this.LayoutRoot.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); |
|
69 |
this.LayoutRoot.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); |
|
70 |
this.LayoutRoot.RowStyles.Add(new System.Windows.Forms.RowStyle()); |
|
71 |
this.LayoutRoot.Size = new System.Drawing.Size(286, 570); |
|
65 | 72 |
this.LayoutRoot.TabIndex = 0; |
66 | 73 |
// |
67 |
// LayoutBrief |
|
68 |
// |
|
69 |
this.LayoutBrief.ColumnCount = 1; |
|
70 |
this.LayoutBrief.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); |
|
71 |
this.LayoutBrief.Controls.Add(this.lbBrief, 0, 0); |
|
72 |
this.LayoutBrief.Controls.Add(this.txtBrief, 0, 1); |
|
73 |
this.LayoutBrief.Dock = System.Windows.Forms.DockStyle.Fill; |
|
74 |
this.LayoutBrief.Location = new System.Drawing.Point(3, 3); |
|
75 |
this.LayoutBrief.Name = "LayoutBrief"; |
|
76 |
this.LayoutBrief.RowCount = 2; |
|
77 |
this.LayoutBrief.RowStyles.Add(new System.Windows.Forms.RowStyle()); |
|
78 |
this.LayoutBrief.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
|
79 |
this.LayoutBrief.Size = new System.Drawing.Size(242, 101); |
|
80 |
this.LayoutBrief.TabIndex = 0; |
|
81 |
// |
|
82 |
// lbBrief |
|
83 |
// |
|
84 |
this.lbBrief.AutoSize = true; |
|
85 |
this.lbBrief.BackColor = System.Drawing.Color.Transparent; |
|
86 |
this.lbBrief.Dock = System.Windows.Forms.DockStyle.Left; |
|
87 |
this.lbBrief.Location = new System.Drawing.Point(3, 3); |
|
88 |
this.lbBrief.Margin = new System.Windows.Forms.Padding(3); |
|
89 |
this.lbBrief.Name = "lbBrief"; |
|
90 |
this.lbBrief.Size = new System.Drawing.Size(50, 12); |
|
91 |
this.lbBrief.TabIndex = 0; |
|
92 |
this.lbBrief.Text = "- Brief -"; |
|
93 |
this.lbBrief.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
|
94 |
// |
|
95 | 74 |
// LayoutImages |
96 | 75 |
// |
97 | 76 |
this.LayoutImages.ColumnCount = 1; |
98 | 77 |
this.LayoutImages.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
99 |
this.LayoutImages.Controls.Add(this.lstFrImages, 0, 2); |
|
100 | 78 |
this.LayoutImages.Controls.Add(this.label1, 0, 0); |
101 |
this.LayoutImages.Controls.Add(this.selectImage, 0, 3); |
|
102 |
this.LayoutImages.Controls.Add(this.lstToImages, 0, 1); |
|
79 |
this.LayoutImages.Controls.Add(this.selectImage, 0, 1); |
|
103 | 80 |
this.LayoutImages.Dock = System.Windows.Forms.DockStyle.Fill; |
104 |
this.LayoutImages.Location = new System.Drawing.Point(3, 110);
|
|
81 |
this.LayoutImages.Location = new System.Drawing.Point(3, 225);
|
|
105 | 82 |
this.LayoutImages.Name = "LayoutImages"; |
106 |
this.LayoutImages.RowCount = 4;
|
|
83 |
this.LayoutImages.RowCount = 2;
|
|
107 | 84 |
this.LayoutImages.RowStyles.Add(new System.Windows.Forms.RowStyle()); |
108 |
this.LayoutImages.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F)); |
|
109 |
this.LayoutImages.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F)); |
|
110 | 85 |
this.LayoutImages.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
111 |
this.LayoutImages.Size = new System.Drawing.Size(242, 482);
|
|
86 |
this.LayoutImages.Size = new System.Drawing.Size(280, 342);
|
|
112 | 87 |
this.LayoutImages.TabIndex = 1; |
113 | 88 |
// |
114 |
// lstFrImages |
|
115 |
// |
|
116 |
this.lstFrImages.AllowArbitraryItemHeight = true; |
|
117 |
this.lstFrImages.Dock = System.Windows.Forms.DockStyle.Fill; |
|
118 |
this.lstFrImages.FullRowSelect = false; |
|
119 |
this.lstFrImages.ItemSize = new System.Drawing.Size(57, 57); |
|
120 |
this.lstFrImages.Location = new System.Drawing.Point(3, 81); |
|
121 |
this.lstFrImages.Name = "lstFrImages"; |
|
122 |
this.lstFrImages.ShowItemToolTips = false; |
|
123 |
this.lstFrImages.Size = new System.Drawing.Size(236, 54); |
|
124 |
this.lstFrImages.TabIndex = 5; |
|
125 |
this.lstFrImages.ViewType = Telerik.WinControls.UI.ListViewType.IconsView; |
|
126 |
// |
|
127 | 89 |
// label1 |
128 | 90 |
// |
129 | 91 |
this.label1.AutoSize = true; |
130 | 92 |
this.label1.BackColor = System.Drawing.Color.Transparent; |
131 |
this.label1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
93 |
this.label1.Dock = System.Windows.Forms.DockStyle.Left;
|
|
132 | 94 |
this.label1.Location = new System.Drawing.Point(3, 3); |
133 | 95 |
this.label1.Margin = new System.Windows.Forms.Padding(3); |
134 | 96 |
this.label1.Name = "label1"; |
135 |
this.label1.Size = new System.Drawing.Size(236, 12);
|
|
97 |
this.label1.Size = new System.Drawing.Size(67, 12);
|
|
136 | 98 |
this.label1.TabIndex = 1; |
137 | 99 |
this.label1.Text = "- Images -"; |
138 | 100 |
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
... | ... | |
140 | 102 |
// selectImage |
141 | 103 |
// |
142 | 104 |
this.selectImage.Dock = System.Windows.Forms.DockStyle.Fill; |
143 |
this.selectImage.Location = new System.Drawing.Point(3, 141);
|
|
105 |
this.selectImage.Location = new System.Drawing.Point(3, 21);
|
|
144 | 106 |
this.selectImage.Name = "selectImage"; |
145 | 107 |
this.selectImage.ShowBorder = true; |
146 |
this.selectImage.Size = new System.Drawing.Size(236, 338);
|
|
108 |
this.selectImage.Size = new System.Drawing.Size(274, 318);
|
|
147 | 109 |
this.selectImage.TabIndex = 3; |
148 | 110 |
// |
111 |
// LayoutDoftech |
|
112 |
// |
|
113 |
this.LayoutDoftech.ColumnCount = 1; |
|
114 |
this.LayoutDoftech.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); |
|
115 |
this.LayoutDoftech.Controls.Add(this.lbBrief, 0, 0); |
|
116 |
this.LayoutDoftech.Controls.Add(this.txtBriefDoftech, 0, 1); |
|
117 |
this.LayoutDoftech.Controls.Add(this.lstToImages, 0, 2); |
|
118 |
this.LayoutDoftech.Dock = System.Windows.Forms.DockStyle.Fill; |
|
119 |
this.LayoutDoftech.Location = new System.Drawing.Point(3, 3); |
|
120 |
this.LayoutDoftech.MinimumSize = new System.Drawing.Size(0, 105); |
|
121 |
this.LayoutDoftech.Name = "LayoutDoftech"; |
|
122 |
this.LayoutDoftech.RowCount = 3; |
|
123 |
this.LayoutDoftech.RowStyles.Add(new System.Windows.Forms.RowStyle()); |
|
124 |
this.LayoutDoftech.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
|
125 |
this.LayoutDoftech.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F)); |
|
126 |
this.LayoutDoftech.Size = new System.Drawing.Size(280, 105); |
|
127 |
this.LayoutDoftech.TabIndex = 0; |
|
128 |
// |
|
129 |
// lbBrief |
|
130 |
// |
|
131 |
this.lbBrief.AutoSize = true; |
|
132 |
this.lbBrief.BackColor = System.Drawing.Color.Transparent; |
|
133 |
this.lbBrief.Dock = System.Windows.Forms.DockStyle.Left; |
|
134 |
this.lbBrief.Location = new System.Drawing.Point(3, 3); |
|
135 |
this.lbBrief.Margin = new System.Windows.Forms.Padding(3); |
|
136 |
this.lbBrief.Name = "lbBrief"; |
|
137 |
this.lbBrief.Size = new System.Drawing.Size(61, 12); |
|
138 |
this.lbBrief.TabIndex = 0; |
|
139 |
this.lbBrief.Text = "- 도프텍 -"; |
|
140 |
this.lbBrief.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
|
141 |
// |
|
142 |
// txtBriefDoftech |
|
143 |
// |
|
144 |
this.txtBriefDoftech.Dock = System.Windows.Forms.DockStyle.Fill; |
|
145 |
this.txtBriefDoftech.Location = new System.Drawing.Point(3, 21); |
|
146 |
this.txtBriefDoftech.MinimumSize = new System.Drawing.Size(30, 0); |
|
147 |
this.txtBriefDoftech.Multiline = true; |
|
148 |
this.txtBriefDoftech.Name = "txtBriefDoftech"; |
|
149 |
// |
|
150 |
// |
|
151 |
// |
|
152 |
this.txtBriefDoftech.RootElement.MinSize = new System.Drawing.Size(30, 0); |
|
153 |
this.txtBriefDoftech.RootElement.StretchVertically = true; |
|
154 |
this.txtBriefDoftech.ShowNullText = true; |
|
155 |
this.txtBriefDoftech.Size = new System.Drawing.Size(274, 21); |
|
156 |
this.txtBriefDoftech.TabIndex = 1; |
|
157 |
this.txtBriefDoftech.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtBriefDoftech_MouseDown); |
|
158 |
// |
|
149 | 159 |
// lstToImages |
150 | 160 |
// |
151 | 161 |
this.lstToImages.AllowArbitraryItemHeight = true; |
152 | 162 |
this.lstToImages.Dock = System.Windows.Forms.DockStyle.Fill; |
153 | 163 |
this.lstToImages.FullRowSelect = false; |
154 | 164 |
this.lstToImages.ItemSize = new System.Drawing.Size(57, 57); |
155 |
this.lstToImages.Location = new System.Drawing.Point(3, 21);
|
|
165 |
this.lstToImages.Location = new System.Drawing.Point(3, 48);
|
|
156 | 166 |
this.lstToImages.Name = "lstToImages"; |
157 | 167 |
this.lstToImages.ShowItemToolTips = false; |
158 |
this.lstToImages.Size = new System.Drawing.Size(236, 54);
|
|
168 |
this.lstToImages.Size = new System.Drawing.Size(274, 54);
|
|
159 | 169 |
this.lstToImages.TabIndex = 4; |
160 | 170 |
this.lstToImages.ViewType = Telerik.WinControls.UI.ListViewType.IconsView; |
161 | 171 |
// |
162 |
// txtBrief |
|
172 |
// LayoutSec |
|
173 |
// |
|
174 |
this.LayoutSec.ColumnCount = 1; |
|
175 |
this.LayoutSec.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); |
|
176 |
this.LayoutSec.Controls.Add(this.lstFrImages, 0, 2); |
|
177 |
this.LayoutSec.Controls.Add(this.label2, 0, 0); |
|
178 |
this.LayoutSec.Controls.Add(this.txtBriefSec, 0, 1); |
|
179 |
this.LayoutSec.Dock = System.Windows.Forms.DockStyle.Fill; |
|
180 |
this.LayoutSec.Location = new System.Drawing.Point(3, 114); |
|
181 |
this.LayoutSec.MinimumSize = new System.Drawing.Size(0, 105); |
|
182 |
this.LayoutSec.Name = "LayoutSec"; |
|
183 |
this.LayoutSec.RowCount = 3; |
|
184 |
this.LayoutSec.RowStyles.Add(new System.Windows.Forms.RowStyle()); |
|
185 |
this.LayoutSec.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
|
186 |
this.LayoutSec.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F)); |
|
187 |
this.LayoutSec.Size = new System.Drawing.Size(280, 105); |
|
188 |
this.LayoutSec.TabIndex = 2; |
|
163 | 189 |
// |
164 |
this.txtBrief.Dock = System.Windows.Forms.DockStyle.Fill; |
|
165 |
this.txtBrief.Location = new System.Drawing.Point(3, 21); |
|
166 |
this.txtBrief.Multiline = true; |
|
167 |
this.txtBrief.Name = "txtBrief"; |
|
190 |
// lstFrImages |
|
191 |
// |
|
192 |
this.lstFrImages.AllowArbitraryItemHeight = true; |
|
193 |
this.lstFrImages.Dock = System.Windows.Forms.DockStyle.Fill; |
|
194 |
this.lstFrImages.FullRowSelect = false; |
|
195 |
this.lstFrImages.ItemSize = new System.Drawing.Size(57, 57); |
|
196 |
this.lstFrImages.Location = new System.Drawing.Point(3, 48); |
|
197 |
this.lstFrImages.Name = "lstFrImages"; |
|
198 |
this.lstFrImages.ShowItemToolTips = false; |
|
199 |
this.lstFrImages.Size = new System.Drawing.Size(274, 54); |
|
200 |
this.lstFrImages.TabIndex = 5; |
|
201 |
this.lstFrImages.ViewType = Telerik.WinControls.UI.ListViewType.IconsView; |
|
202 |
// |
|
203 |
// label2 |
|
204 |
// |
|
205 |
this.label2.AutoSize = true; |
|
206 |
this.label2.BackColor = System.Drawing.Color.Transparent; |
|
207 |
this.label2.Dock = System.Windows.Forms.DockStyle.Left; |
|
208 |
this.label2.Location = new System.Drawing.Point(3, 3); |
|
209 |
this.label2.Margin = new System.Windows.Forms.Padding(3); |
|
210 |
this.label2.Name = "label2"; |
|
211 |
this.label2.Size = new System.Drawing.Size(49, 12); |
|
212 |
this.label2.TabIndex = 1; |
|
213 |
this.label2.Text = "- 삼성 -"; |
|
214 |
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
|
168 | 215 |
// |
216 |
// txtBriefSec |
|
169 | 217 |
// |
218 |
this.txtBriefSec.Dock = System.Windows.Forms.DockStyle.Fill; |
|
219 |
this.txtBriefSec.Location = new System.Drawing.Point(3, 21); |
|
220 |
this.txtBriefSec.MinimumSize = new System.Drawing.Size(30, 0); |
|
221 |
this.txtBriefSec.Multiline = true; |
|
222 |
this.txtBriefSec.Name = "txtBriefSec"; |
|
170 | 223 |
// |
171 |
this.txtBrief.RootElement.StretchVertically = true; |
|
172 |
this.txtBrief.ShowNullText = true; |
|
173 |
this.txtBrief.Size = new System.Drawing.Size(236, 77); |
|
174 |
this.txtBrief.TabIndex = 1; |
|
224 |
// |
|
225 |
// |
|
226 |
this.txtBriefSec.RootElement.MinSize = new System.Drawing.Size(30, 0); |
|
227 |
this.txtBriefSec.RootElement.StretchVertically = true; |
|
228 |
this.txtBriefSec.ShowNullText = true; |
|
229 |
this.txtBriefSec.Size = new System.Drawing.Size(274, 21); |
|
230 |
this.txtBriefSec.TabIndex = 2; |
|
231 |
this.txtBriefSec.TextChanged += new System.EventHandler(this.txtBriefSec_TextChanged); |
|
175 | 232 |
// |
176 | 233 |
// BriefAndImages |
177 | 234 |
// |
... | ... | |
183 | 240 |
this.DoubleBuffered = true; |
184 | 241 |
this.MinimumSize = new System.Drawing.Size(150, 200); |
185 | 242 |
this.Name = "BriefAndImages"; |
186 |
this.Size = new System.Drawing.Size(248, 595);
|
|
243 |
this.Size = new System.Drawing.Size(286, 570);
|
|
187 | 244 |
this.LayoutRoot.ResumeLayout(false); |
188 |
this.LayoutBrief.ResumeLayout(false); |
|
189 |
this.LayoutBrief.PerformLayout(); |
|
190 | 245 |
this.LayoutImages.ResumeLayout(false); |
191 | 246 |
this.LayoutImages.PerformLayout(); |
192 |
((System.ComponentModel.ISupportInitialize)(this.lstFrImages)).EndInit(); |
|
193 | 247 |
((System.ComponentModel.ISupportInitialize)(this.selectImage)).EndInit(); |
248 |
this.LayoutDoftech.ResumeLayout(false); |
|
249 |
this.LayoutDoftech.PerformLayout(); |
|
250 |
((System.ComponentModel.ISupportInitialize)(this.txtBriefDoftech)).EndInit(); |
|
194 | 251 |
((System.ComponentModel.ISupportInitialize)(this.lstToImages)).EndInit(); |
195 |
((System.ComponentModel.ISupportInitialize)(this.txtBrief)).EndInit(); |
|
252 |
this.LayoutSec.ResumeLayout(false); |
|
253 |
this.LayoutSec.PerformLayout(); |
|
254 |
((System.ComponentModel.ISupportInitialize)(this.lstFrImages)).EndInit(); |
|
255 |
((System.ComponentModel.ISupportInitialize)(this.txtBriefSec)).EndInit(); |
|
196 | 256 |
this.ResumeLayout(false); |
197 | 257 |
this.PerformLayout(); |
198 | 258 |
|
... | ... | |
201 | 261 |
#endregion |
202 | 262 |
|
203 | 263 |
private System.Windows.Forms.TableLayoutPanel LayoutRoot; |
204 |
private System.Windows.Forms.TableLayoutPanel LayoutBrief;
|
|
264 |
private System.Windows.Forms.TableLayoutPanel LayoutDoftech;
|
|
205 | 265 |
private System.Windows.Forms.Label lbBrief; |
206 | 266 |
private System.Windows.Forms.TableLayoutPanel LayoutImages; |
207 | 267 |
private System.Windows.Forms.Label label1; |
208 | 268 |
private Telerik.WinControls.UI.RadPictureBox selectImage; |
209 | 269 |
private Telerik.WinControls.UI.RadListView lstToImages; |
210 | 270 |
private Telerik.WinControls.UI.RadListView lstFrImages; |
211 |
private Telerik.WinControls.UI.RadTextBox txtBrief; |
|
271 |
private Telerik.WinControls.UI.RadTextBox txtBriefDoftech; |
|
272 |
private Telerik.WinControls.UI.RadTextBox txtBriefSec; |
|
273 |
private System.Windows.Forms.TableLayoutPanel LayoutSec; |
|
274 |
private System.Windows.Forms.Label label2; |
|
212 | 275 |
} |
213 | 276 |
} |
ID2.Manager/ID2.Manager/Controls/BriefAndImages.cs | ||
---|---|---|
16 | 16 |
|
17 | 17 |
public partial class BriefAndImages : UserControl |
18 | 18 |
{ |
19 |
const int TextMinHeight = 30; |
|
20 |
|
|
19 | 21 |
public BriefAndImages() |
20 | 22 |
{ |
21 | 23 |
InitializeComponent(); |
22 | 24 |
|
23 |
txtBrief.DataBindings.Add(new Binding("Text", this, "Brief",false,DataSourceUpdateMode.OnPropertyChanged)); |
|
25 |
txtBriefDoftech.DataBindings.Add(new Binding("Text", this, "BriefDoftech",false,DataSourceUpdateMode.OnPropertyChanged)); |
|
26 |
txtBriefSec.DataBindings.Add(new Binding("Text", this, "BriefSec", false, DataSourceUpdateMode.OnPropertyChanged)); |
|
24 | 27 |
|
25 | 28 |
lstToImages.ListViewElement.ViewElement.Orientation = Orientation.Horizontal; |
26 | 29 |
lstFrImages.ListViewElement.ViewElement.Orientation = Orientation.Horizontal; |
... | ... | |
70 | 73 |
selectImage.ContextMenuProperties.RemoveItem.Visibility = ElementVisibility.Collapsed; |
71 | 74 |
selectImage.ContextMenuProperties.CutItem.Visibility = ElementVisibility.Collapsed; |
72 | 75 |
selectImage.ContextMenuProperties.PasteItem.Visibility = ElementVisibility.Collapsed; |
73 |
selectImage.ContextMenuProperties.EditItem.Visibility = ElementVisibility.Collapsed; |
|
76 |
|
|
77 |
//selectImage.ContextMenuProperties.EditItem.Visibility = ElementVisibility.Collapsed; |
|
74 | 78 |
} |
75 | 79 |
|
76 | 80 |
public void SetToImages(List<Byte[]> images) |
... | ... | |
115 | 119 |
lstFrImages.Items.Clear(); |
116 | 120 |
lstToImages.Items.Clear(); |
117 | 121 |
selectImage.Image = null; |
118 |
Brief = ""; |
|
122 |
briefDoftech = ""; |
|
123 |
BriefSec = ""; |
|
119 | 124 |
} |
120 | 125 |
|
121 |
private string brief; |
|
122 |
public string Brief
|
|
126 |
private string briefDoftech;
|
|
127 |
public string BriefDoftech
|
|
123 | 128 |
{ |
124 |
get { return brief; } |
|
129 |
get { return briefDoftech; }
|
|
125 | 130 |
set |
126 | 131 |
{ |
127 |
if (brief != value) |
|
132 |
if (briefDoftech != value)
|
|
128 | 133 |
{ |
129 |
brief = value; |
|
130 |
var propArg = new PropertyChangedEventArgs(nameof(Brief)); |
|
134 |
briefDoftech = value; |
|
135 |
var propArg = new PropertyChangedEventArgs(nameof(briefDoftech)); |
|
136 |
PropertyChanged?.Invoke(this, propArg); |
|
137 |
} |
|
138 |
} |
|
139 |
} |
|
140 |
|
|
141 |
private string briefSec; |
|
142 |
public string BriefSec |
|
143 |
{ |
|
144 |
get { return briefSec; } |
|
145 |
set |
|
146 |
{ |
|
147 |
if (briefSec != value) |
|
148 |
{ |
|
149 |
briefSec = value; |
|
150 |
var propArg = new PropertyChangedEventArgs(nameof(briefSec)); |
|
131 | 151 |
PropertyChanged?.Invoke(this, propArg); |
132 | 152 |
} |
133 | 153 |
} |
... | ... | |
147 | 167 |
|
148 | 168 |
private void txtBrief_TextChanged(object sender, EventArgs e) |
149 | 169 |
{ |
150 |
Brief = txtBrief.Text; |
|
170 |
briefDoftech = txtBriefDoftech.Text; |
|
171 |
} |
|
172 |
|
|
173 |
private void txtBriefSec_TextChanged(object sender, EventArgs e) |
|
174 |
{ |
|
175 |
briefSec = txtBriefSec.Text; |
|
176 |
} |
|
177 |
|
|
178 |
private void txtBriefDoftech_MouseDown(object sender, MouseEventArgs e) |
|
179 |
{ |
|
180 |
txtBriefDoftech.MinimumSize = new Size(0, 100); |
|
181 |
//var txtBriefDoftech.Size.Height |
|
151 | 182 |
} |
152 | 183 |
} |
153 | 184 |
} |
ID2.Manager/ID2.Manager/Main.Designer.cs | ||
---|---|---|
160 | 160 |
this.radLabelElementSpace = new Telerik.WinControls.UI.RadLabelElement(); |
161 | 161 |
this.radLabelElementUser = new Telerik.WinControls.UI.RadLabelElement(); |
162 | 162 |
this.DockMain = new Telerik.WinControls.UI.Docking.RadDock(); |
163 |
this.DockWindowComment = new Telerik.WinControls.UI.Docking.ToolWindow(); |
|
164 |
this.radPageViewComment = new Telerik.WinControls.UI.RadPageView(); |
|
165 |
this.radPageViewPageReview = new Telerik.WinControls.UI.RadPageViewPage(); |
|
166 |
this.radPageViewPageValidation = new Telerik.WinControls.UI.RadPageViewPage(); |
|
163 |
this.DockWindowViewer = new Telerik.WinControls.UI.Docking.ToolWindow(); |
|
167 | 164 |
this.documentContainer1 = new Telerik.WinControls.UI.Docking.DocumentContainer(); |
168 | 165 |
this.documentTabStrip1 = new Telerik.WinControls.UI.Docking.DocumentTabStrip(); |
169 | 166 |
this.DockWindowMain = new Telerik.WinControls.UI.Docking.ToolWindow(); |
170 | 167 |
this.radSplitContainer1 = new Telerik.WinControls.UI.RadSplitContainer(); |
171 | 168 |
this.toolTabStrip2 = new Telerik.WinControls.UI.Docking.ToolTabStrip(); |
169 |
this.DockWindowComment = new Telerik.WinControls.UI.Docking.ToolWindow(); |
|
170 |
this.radPageViewComment = new Telerik.WinControls.UI.RadPageView(); |
|
171 |
this.radPageViewPageReview = new Telerik.WinControls.UI.RadPageViewPage(); |
|
172 |
this.radPageViewPageValidation = new Telerik.WinControls.UI.RadPageViewPage(); |
|
172 | 173 |
this.toolTabStrip3 = new Telerik.WinControls.UI.Docking.ToolTabStrip(); |
173 |
this.DockWindowViewer = new Telerik.WinControls.UI.Docking.ToolWindow(); |
|
174 | 174 |
((System.ComponentModel.ISupportInitialize)(this.ID2ManagerRadRibbonBar)).BeginInit(); |
175 | 175 |
((System.ComponentModel.ISupportInitialize)(this.radRibbonBarBackstageViewID2Manager)).BeginInit(); |
176 | 176 |
this.radRibbonBarBackstageViewID2Manager.SuspendLayout(); |
... | ... | |
223 | 223 |
((System.ComponentModel.ISupportInitialize)(this.radStatusStripMain)).BeginInit(); |
224 | 224 |
((System.ComponentModel.ISupportInitialize)(this.DockMain)).BeginInit(); |
225 | 225 |
this.DockMain.SuspendLayout(); |
226 |
this.DockWindowComment.SuspendLayout(); |
|
227 |
((System.ComponentModel.ISupportInitialize)(this.radPageViewComment)).BeginInit(); |
|
228 |
this.radPageViewComment.SuspendLayout(); |
|
226 |
this.DockWindowViewer.SuspendLayout(); |
|
229 | 227 |
((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).BeginInit(); |
230 | 228 |
this.documentContainer1.SuspendLayout(); |
231 | 229 |
((System.ComponentModel.ISupportInitialize)(this.documentTabStrip1)).BeginInit(); |
... | ... | |
235 | 233 |
this.radSplitContainer1.SuspendLayout(); |
236 | 234 |
((System.ComponentModel.ISupportInitialize)(this.toolTabStrip2)).BeginInit(); |
237 | 235 |
this.toolTabStrip2.SuspendLayout(); |
236 |
this.DockWindowComment.SuspendLayout(); |
|
237 |
((System.ComponentModel.ISupportInitialize)(this.radPageViewComment)).BeginInit(); |
|
238 |
this.radPageViewComment.SuspendLayout(); |
|
238 | 239 |
((System.ComponentModel.ISupportInitialize)(this.toolTabStrip3)).BeginInit(); |
239 | 240 |
this.toolTabStrip3.SuspendLayout(); |
240 |
this.DockWindowViewer.SuspendLayout(); |
|
241 | 241 |
((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); |
242 | 242 |
this.SuspendLayout(); |
243 | 243 |
// |
... | ... | |
441 | 441 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); |
442 | 442 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F)); |
443 | 443 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); |
444 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 181F));
|
|
444 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 185F));
|
|
445 | 445 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListFrReviewStatus, 4, 1); |
446 | 446 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListToIsDiscussion, 2, 1); |
447 | 447 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabelFrReviewStatus, 3, 1); |
... | ... | |
491 | 491 |
this.radDropDownListFrReviewStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
492 | 492 |
this.radDropDownListFrReviewStatus.DropDownAnimationEnabled = true; |
493 | 493 |
this.radDropDownListFrReviewStatus.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
494 |
this.radDropDownListFrReviewStatus.Location = new System.Drawing.Point(337, 34);
|
|
494 |
this.radDropDownListFrReviewStatus.Location = new System.Drawing.Point(336, 34);
|
|
495 | 495 |
this.radDropDownListFrReviewStatus.Name = "radDropDownListFrReviewStatus"; |
496 |
this.radDropDownListFrReviewStatus.Size = new System.Drawing.Size(98, 20);
|
|
496 |
this.radDropDownListFrReviewStatus.Size = new System.Drawing.Size(97, 20);
|
|
497 | 497 |
this.radDropDownListFrReviewStatus.TabIndex = 18; |
498 | 498 |
// |
499 | 499 |
// radDropDownListToIsDiscussion |
... | ... | |
503 | 503 |
this.radDropDownListToIsDiscussion.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
504 | 504 |
this.radDropDownListToIsDiscussion.Location = new System.Drawing.Point(146, 34); |
505 | 505 |
this.radDropDownListToIsDiscussion.Name = "radDropDownListToIsDiscussion"; |
506 |
this.radDropDownListToIsDiscussion.Size = new System.Drawing.Size(98, 20);
|
|
506 |
this.radDropDownListToIsDiscussion.Size = new System.Drawing.Size(97, 20);
|
|
507 | 507 |
this.radDropDownListToIsDiscussion.TabIndex = 17; |
508 | 508 |
// |
509 | 509 |
// radLabelFrReviewStatus |
510 | 510 |
// |
511 | 511 |
this.radLabelFrReviewStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
512 | 512 |
this.radLabelFrReviewStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
513 |
this.radLabelFrReviewStatus.Location = new System.Drawing.Point(251, 35);
|
|
513 |
this.radLabelFrReviewStatus.Location = new System.Drawing.Point(250, 35);
|
|
514 | 514 |
this.radLabelFrReviewStatus.Name = "radLabelFrReviewStatus"; |
515 | 515 |
this.radLabelFrReviewStatus.Size = new System.Drawing.Size(59, 17); |
516 | 516 |
this.radLabelFrReviewStatus.TabIndex = 7; |
... | ... | |
540 | 540 |
// |
541 | 541 |
this.radLabelAVEVAStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
542 | 542 |
this.radLabelAVEVAStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
543 |
this.radLabelAVEVAStatus.Location = new System.Drawing.Point(251, 64);
|
|
543 |
this.radLabelAVEVAStatus.Location = new System.Drawing.Point(250, 64);
|
|
544 | 544 |
this.radLabelAVEVAStatus.Name = "radLabelAVEVAStatus"; |
545 | 545 |
this.radLabelAVEVAStatus.Size = new System.Drawing.Size(86, 17); |
546 | 546 |
this.radLabelAVEVAStatus.TabIndex = 8; |
... | ... | |
550 | 550 |
// |
551 | 551 |
this.radLabelIsID2Work.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
552 | 552 |
this.radLabelIsID2Work.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
553 |
this.radLabelIsID2Work.Location = new System.Drawing.Point(442, 35);
|
|
553 |
this.radLabelIsID2Work.Location = new System.Drawing.Point(440, 35);
|
|
554 | 554 |
this.radLabelIsID2Work.Name = "radLabelIsID2Work"; |
555 | 555 |
this.radLabelIsID2Work.Size = new System.Drawing.Size(80, 17); |
556 | 556 |
this.radLabelIsID2Work.TabIndex = 6; |
... | ... | |
560 | 560 |
// |
561 | 561 |
this.radLabelJobLevel.Anchor = System.Windows.Forms.AnchorStyles.Left; |
562 | 562 |
this.radLabelJobLevel.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
563 |
this.radLabelJobLevel.Location = new System.Drawing.Point(442, 6);
|
|
563 |
this.radLabelJobLevel.Location = new System.Drawing.Point(440, 6);
|
|
564 | 564 |
this.radLabelJobLevel.Name = "radLabelJobLevel"; |
565 | 565 |
this.radLabelJobLevel.Size = new System.Drawing.Size(47, 17); |
566 | 566 |
this.radLabelJobLevel.TabIndex = 7; |
... | ... | |
611 | 611 |
this.radButtonSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); |
612 | 612 |
this.radButtonSearch.Cursor = System.Windows.Forms.Cursors.WaitCursor; |
613 | 613 |
this.radButtonSearch.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
614 |
this.radButtonSearch.Location = new System.Drawing.Point(886, 4);
|
|
614 |
this.radButtonSearch.Location = new System.Drawing.Point(884, 4);
|
|
615 | 615 |
this.radButtonSearch.Name = "radButtonSearch"; |
616 | 616 |
this.tableLayoutPanelCondition.SetRowSpan(this.radButtonSearch, 5); |
617 | 617 |
this.radButtonSearch.Size = new System.Drawing.Size(54, 136); |
... | ... | |
625 | 625 |
this.radDropDownListProject.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
626 | 626 |
this.radDropDownListProject.Location = new System.Drawing.Point(146, 5); |
627 | 627 |
this.radDropDownListProject.Name = "radDropDownListProject"; |
628 |
this.radDropDownListProject.Size = new System.Drawing.Size(98, 20);
|
|
628 |
this.radDropDownListProject.Size = new System.Drawing.Size(97, 20);
|
|
629 | 629 |
this.radDropDownListProject.TabIndex = 7; |
630 | 630 |
// |
631 | 631 |
// radLabelDocumentNo |
632 | 632 |
// |
633 | 633 |
this.radLabelDocumentNo.Anchor = System.Windows.Forms.AnchorStyles.Left; |
634 | 634 |
this.radLabelDocumentNo.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
635 |
this.radLabelDocumentNo.Location = new System.Drawing.Point(633, 6);
|
|
635 |
this.radLabelDocumentNo.Location = new System.Drawing.Point(630, 6);
|
|
636 | 636 |
this.radLabelDocumentNo.Name = "radLabelDocumentNo"; |
637 | 637 |
this.radLabelDocumentNo.Size = new System.Drawing.Size(49, 17); |
638 | 638 |
this.radLabelDocumentNo.TabIndex = 6; |
... | ... | |
641 | 641 |
// radTextBoxDocumentNo |
642 | 642 |
// |
643 | 643 |
this.radTextBoxDocumentNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
644 |
this.radTextBoxDocumentNo.Location = new System.Drawing.Point(719, 5);
|
|
644 |
this.radTextBoxDocumentNo.Location = new System.Drawing.Point(716, 5);
|
|
645 | 645 |
this.radTextBoxDocumentNo.Name = "radTextBoxDocumentNo"; |
646 |
this.radTextBoxDocumentNo.Size = new System.Drawing.Size(98, 20);
|
|
646 |
this.radTextBoxDocumentNo.Size = new System.Drawing.Size(97, 20);
|
|
647 | 647 |
this.radTextBoxDocumentNo.TabIndex = 8; |
648 | 648 |
// |
649 | 649 |
// radLabelPersonInCharge |
650 | 650 |
// |
651 | 651 |
this.radLabelPersonInCharge.Anchor = System.Windows.Forms.AnchorStyles.Left; |
652 | 652 |
this.radLabelPersonInCharge.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
653 |
this.radLabelPersonInCharge.Location = new System.Drawing.Point(251, 6);
|
|
653 |
this.radLabelPersonInCharge.Location = new System.Drawing.Point(250, 6);
|
|
654 | 654 |
this.radLabelPersonInCharge.Name = "radLabelPersonInCharge"; |
655 | 655 |
this.radLabelPersonInCharge.Size = new System.Drawing.Size(47, 17); |
656 | 656 |
this.radLabelPersonInCharge.TabIndex = 6; |
... | ... | |
661 | 661 |
this.radDropDownListPersonInCharge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
662 | 662 |
this.radDropDownListPersonInCharge.DropDownAnimationEnabled = true; |
663 | 663 |
this.radDropDownListPersonInCharge.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
664 |
this.radDropDownListPersonInCharge.Location = new System.Drawing.Point(337, 5);
|
|
664 |
this.radDropDownListPersonInCharge.Location = new System.Drawing.Point(336, 5);
|
|
665 | 665 |
this.radDropDownListPersonInCharge.Name = "radDropDownListPersonInCharge"; |
666 |
this.radDropDownListPersonInCharge.Size = new System.Drawing.Size(98, 20);
|
|
666 |
this.radDropDownListPersonInCharge.Size = new System.Drawing.Size(97, 20);
|
|
667 | 667 |
this.radDropDownListPersonInCharge.TabIndex = 9; |
668 | 668 |
// |
669 | 669 |
// radLabel1 |
... | ... | |
681 | 681 |
this.radDropDownListJobLevel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
682 | 682 |
this.radDropDownListJobLevel.DropDownAnimationEnabled = true; |
683 | 683 |
this.radDropDownListJobLevel.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
684 |
this.radDropDownListJobLevel.Location = new System.Drawing.Point(528, 5);
|
|
684 |
this.radDropDownListJobLevel.Location = new System.Drawing.Point(526, 5);
|
|
685 | 685 |
this.radDropDownListJobLevel.Name = "radDropDownListJobLevel"; |
686 |
this.radDropDownListJobLevel.Size = new System.Drawing.Size(98, 20);
|
|
686 |
this.radDropDownListJobLevel.Size = new System.Drawing.Size(97, 20);
|
|
687 | 687 |
this.radDropDownListJobLevel.TabIndex = 11; |
688 | 688 |
// |
689 | 689 |
// radLabelID2Status |
... | ... | |
700 | 700 |
// |
701 | 701 |
this.radLabel10.Anchor = System.Windows.Forms.AnchorStyles.Left; |
702 | 702 |
this.radLabel10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
703 |
this.radLabel10.Location = new System.Drawing.Point(251, 93);
|
|
703 |
this.radLabel10.Location = new System.Drawing.Point(250, 93);
|
|
704 | 704 |
this.radLabel10.Name = "radLabel10"; |
705 | 705 |
this.radLabel10.Size = new System.Drawing.Size(61, 17); |
706 | 706 |
this.radLabel10.TabIndex = 9; |
... | ... | |
711 | 711 |
this.radDropDownListIsID2Work.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
712 | 712 |
this.radDropDownListIsID2Work.DropDownAnimationEnabled = true; |
713 | 713 |
this.radDropDownListIsID2Work.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
714 |
this.radDropDownListIsID2Work.Location = new System.Drawing.Point(528, 34);
|
|
714 |
this.radDropDownListIsID2Work.Location = new System.Drawing.Point(526, 34);
|
|
715 | 715 |
this.radDropDownListIsID2Work.Name = "radDropDownListIsID2Work"; |
716 |
this.radDropDownListIsID2Work.Size = new System.Drawing.Size(98, 20);
|
|
716 |
this.radDropDownListIsID2Work.Size = new System.Drawing.Size(97, 20);
|
|
717 | 717 |
this.radDropDownListIsID2Work.TabIndex = 12; |
718 | 718 |
// |
719 | 719 |
// radDropDownListID2Status |
... | ... | |
723 | 723 |
this.radDropDownListID2Status.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
724 | 724 |
this.radDropDownListID2Status.Location = new System.Drawing.Point(146, 63); |
725 | 725 |
this.radDropDownListID2Status.Name = "radDropDownListID2Status"; |
726 |
this.radDropDownListID2Status.Size = new System.Drawing.Size(98, 20);
|
|
726 |
this.radDropDownListID2Status.Size = new System.Drawing.Size(97, 20);
|
|
727 | 727 |
this.radDropDownListID2Status.TabIndex = 13; |
728 | 728 |
// |
729 | 729 |
// radDropDownListAVEVAStatus |
... | ... | |
731 | 731 |
this.radDropDownListAVEVAStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
732 | 732 |
this.radDropDownListAVEVAStatus.DropDownAnimationEnabled = true; |
733 | 733 |
this.radDropDownListAVEVAStatus.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
734 |
this.radDropDownListAVEVAStatus.Location = new System.Drawing.Point(337, 63);
|
|
734 |
this.radDropDownListAVEVAStatus.Location = new System.Drawing.Point(336, 63);
|
|
735 | 735 |
this.radDropDownListAVEVAStatus.Name = "radDropDownListAVEVAStatus"; |
736 |
this.radDropDownListAVEVAStatus.Size = new System.Drawing.Size(98, 20);
|
|
736 |
this.radDropDownListAVEVAStatus.Size = new System.Drawing.Size(97, 20);
|
|
737 | 737 |
this.radDropDownListAVEVAStatus.TabIndex = 14; |
738 | 738 |
// |
739 | 739 |
// radDropDownListProdIsResult |
... | ... | |
743 | 743 |
this.radDropDownListProdIsResult.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
744 | 744 |
this.radDropDownListProdIsResult.Location = new System.Drawing.Point(146, 92); |
745 | 745 |
this.radDropDownListProdIsResult.Name = "radDropDownListProdIsResult"; |
746 |
this.radDropDownListProdIsResult.Size = new System.Drawing.Size(98, 20);
|
|
746 |
this.radDropDownListProdIsResult.Size = new System.Drawing.Size(97, 20);
|
|
747 | 747 |
this.radDropDownListProdIsResult.TabIndex = 15; |
748 | 748 |
// |
749 | 749 |
// radDropDownListClientIsResult |
... | ... | |
751 | 751 |
this.radDropDownListClientIsResult.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
752 | 752 |
this.radDropDownListClientIsResult.DropDownAnimationEnabled = true; |
753 | 753 |
this.radDropDownListClientIsResult.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
754 |
this.radDropDownListClientIsResult.Location = new System.Drawing.Point(337, 92);
|
|
754 |
this.radDropDownListClientIsResult.Location = new System.Drawing.Point(336, 92);
|
|
755 | 755 |
this.radDropDownListClientIsResult.Name = "radDropDownListClientIsResult"; |
756 |
this.radDropDownListClientIsResult.Size = new System.Drawing.Size(98, 20);
|
|
756 |
this.radDropDownListClientIsResult.Size = new System.Drawing.Size(97, 20);
|
|
757 | 757 |
this.radDropDownListClientIsResult.TabIndex = 16; |
758 | 758 |
// |
759 | 759 |
// radLabel6 |
... | ... | |
770 | 770 |
// |
771 | 771 |
this.radLabel7.Anchor = System.Windows.Forms.AnchorStyles.Left; |
772 | 772 |
this.radLabel7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
773 |
this.radLabel7.Location = new System.Drawing.Point(251, 121);
|
|
773 |
this.radLabel7.Location = new System.Drawing.Point(250, 121);
|
|
774 | 774 |
this.radLabel7.Name = "radLabel7"; |
775 | 775 |
this.radLabel7.Size = new System.Drawing.Size(72, 17); |
776 | 776 |
this.radLabel7.TabIndex = 12; |
... | ... | |
793 | 793 |
this.radDropDownListGateway.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
794 | 794 |
this.radDropDownListGateway.Location = new System.Drawing.Point(146, 120); |
795 | 795 |
this.radDropDownListGateway.Name = "radDropDownListGateway"; |
796 |
this.radDropDownListGateway.Size = new System.Drawing.Size(98, 20);
|
|
796 |
this.radDropDownListGateway.Size = new System.Drawing.Size(97, 20);
|
|
797 | 797 |
this.radDropDownListGateway.TabIndex = 19; |
798 | 798 |
// |
799 | 799 |
// radDropDownListRegistration |
... | ... | |
801 | 801 |
this.radDropDownListRegistration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
802 | 802 |
this.radDropDownListRegistration.DropDownAnimationEnabled = true; |
803 | 803 |
this.radDropDownListRegistration.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
804 |
this.radDropDownListRegistration.Location = new System.Drawing.Point(337, 120);
|
|
804 |
this.radDropDownListRegistration.Location = new System.Drawing.Point(336, 120);
|
|
805 | 805 |
this.radDropDownListRegistration.Name = "radDropDownListRegistration"; |
806 |
this.radDropDownListRegistration.Size = new System.Drawing.Size(98, 20);
|
|
806 |
this.radDropDownListRegistration.Size = new System.Drawing.Size(97, 20);
|
|
807 | 807 |
this.radDropDownListRegistration.TabIndex = 20; |
808 | 808 |
// |
809 | 809 |
// tableLayoutPanelGroup |
... | ... | |
916 | 916 |
this.radGridViewDocuments.Font = new System.Drawing.Font("Segoe UI", 8.25F); |
917 | 917 |
this.radGridViewDocuments.ForeColor = System.Drawing.Color.Black; |
918 | 918 |
this.radGridViewDocuments.ImeMode = System.Windows.Forms.ImeMode.NoControl; |
919 |
this.radGridViewDocuments.Location = new System.Drawing.Point(3, 64);
|
|
919 |
this.radGridViewDocuments.Location = new System.Drawing.Point(3, 39);
|
|
920 | 920 |
// |
921 | 921 |
// |
922 | 922 |
// |
... | ... | |
1252 | 1252 |
gridViewRelation1}); |
1253 | 1253 |
this.radGridViewDocuments.RightToLeft = System.Windows.Forms.RightToLeft.No; |
1254 | 1254 |
this.radGridViewDocuments.ShowHeaderCellButtons = true; |
1255 |
this.radGridViewDocuments.Size = new System.Drawing.Size(1004, 342);
|
|
1255 |
this.radGridViewDocuments.Size = new System.Drawing.Size(1004, 367);
|
|
1256 | 1256 |
this.radGridViewDocuments.TabIndex = 0; |
1257 | 1257 |
// |
1258 | 1258 |
// radCommandBar1 |
... | ... | |
1266 | 1266 |
this.radCommandBar1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren; |
1267 | 1267 |
this.radCommandBar1.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] { |
1268 | 1268 |
this.commandBarRowSearch}); |
1269 |
this.radCommandBar1.Size = new System.Drawing.Size(784, 55);
|
|
1269 |
this.radCommandBar1.Size = new System.Drawing.Size(784, 30);
|
|
1270 | 1270 |
this.radCommandBar1.TabIndex = 1; |
1271 | 1271 |
// |
1272 | 1272 |
// commandBarRowSearch |
... | ... | |
1421 | 1421 |
this.lbSelectAndTotal.ForeColor = System.Drawing.Color.Red; |
1422 | 1422 |
this.lbSelectAndTotal.Location = new System.Drawing.Point(905, 0); |
1423 | 1423 |
this.lbSelectAndTotal.Name = "lbSelectAndTotal"; |
1424 |
this.lbSelectAndTotal.Size = new System.Drawing.Size(102, 61);
|
|
1424 |
this.lbSelectAndTotal.Size = new System.Drawing.Size(102, 36);
|
|
1425 | 1425 |
this.lbSelectAndTotal.TabIndex = 2; |
1426 | 1426 |
this.lbSelectAndTotal.Text = "(Selected / Total)"; |
1427 | 1427 |
this.lbSelectAndTotal.TextAlign = System.Drawing.ContentAlignment.BottomCenter; |
... | ... | |
1501 | 1501 |
this.DockMain.TabIndex = 1; |
1502 | 1502 |
this.DockMain.TabStop = false; |
1503 | 1503 |
// |
1504 |
// DockWindowComment |
|
1505 |
// |
|
1506 |
this.DockWindowComment.Caption = null; |
|
1507 |
this.DockWindowComment.Controls.Add(this.radPageViewComment); |
|
1508 |
this.DockWindowComment.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); |
|
1509 |
this.DockWindowComment.Location = new System.Drawing.Point(1, 24); |
|
1510 |
this.DockWindowComment.Name = "DockWindowComment"; |
|
1511 |
this.DockWindowComment.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked; |
|
1512 |
this.DockWindowComment.Size = new System.Drawing.Size(279, 288); |
|
1513 |
this.DockWindowComment.Text = "Comment"; |
|
1514 |
// |
|
1515 |
// radPageViewComment |
|
1516 |
// |
|
1517 |
this.radPageViewComment.Controls.Add(this.radPageViewPageReview); |
|
1518 |
this.radPageViewComment.Controls.Add(this.radPageViewPageValidation); |
|
1519 |
this.radPageViewComment.Dock = System.Windows.Forms.DockStyle.Fill; |
|
1520 |
this.radPageViewComment.Location = new System.Drawing.Point(0, 0); |
|
1521 |
this.radPageViewComment.Name = "radPageViewComment"; |
|
1522 |
this.radPageViewComment.SelectedPage = this.radPageViewPageReview; |
|
1523 |
this.radPageViewComment.Size = new System.Drawing.Size(279, 288); |
|
1524 |
this.radPageViewComment.TabIndex = 1; |
|
1525 |
// |
|
1526 |
// radPageViewPageReview |
|
1527 |
// |
|
1528 |
this.radPageViewPageReview.ItemSize = new System.Drawing.SizeF(39F, 28F); |
|
1529 |
this.radPageViewPageReview.Location = new System.Drawing.Point(10, 37); |
|
1530 |
this.radPageViewPageReview.Name = "radPageViewPageReview"; |
|
1531 |
this.radPageViewPageReview.Size = new System.Drawing.Size(258, 240); |
|
1532 |
this.radPageViewPageReview.Text = "검토"; |
|
1533 |
// |
|
1534 |
// radPageViewPageValidation |
|
1504 |
// DockWindowViewer |
|
1535 | 1505 |
// |
1536 |
this.radPageViewPageValidation.ItemSize = new System.Drawing.SizeF(39F, 28F); |
|
1537 |
this.radPageViewPageValidation.Location = new System.Drawing.Point(10, 37); |
|
1538 |
this.radPageViewPageValidation.Name = "radPageViewPageValidation"; |
|
1539 |
this.radPageViewPageValidation.Size = new System.Drawing.Size(258, 240); |
|
1540 |
this.radPageViewPageValidation.Text = "검증"; |
|
1506 |
this.DockWindowViewer.Caption = null; |
|
1507 |
this.DockWindowViewer.Controls.Add(this.radPageViewViewer); |
|
1508 |
this.DockWindowViewer.Font = new System.Drawing.Font("굴림", 9F); |
|
1509 |
this.DockWindowViewer.Location = new System.Drawing.Point(1, 24); |
|
1510 |
this.DockWindowViewer.Name = "DockWindowViewer"; |
|
1511 |
this.DockWindowViewer.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked; |
|
1512 |
this.DockWindowViewer.Size = new System.Drawing.Size(279, 289); |
|
1513 |
this.DockWindowViewer.Text = "Viewer"; |
|
1541 | 1514 |
// |
1542 | 1515 |
// documentContainer1 |
1543 | 1516 |
// |
... | ... | |
1613 | 1586 |
this.toolTabStrip2.TabIndex = 4; |
1614 | 1587 |
this.toolTabStrip2.TabStop = false; |
1615 | 1588 |
// |
1589 |
// DockWindowComment |
|
1590 |
// |
|
1591 |
this.DockWindowComment.Caption = null; |
|
1592 |
this.DockWindowComment.Controls.Add(this.radPageViewComment); |
|
1593 |
this.DockWindowComment.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); |
|
1594 |
this.DockWindowComment.Location = new System.Drawing.Point(1, 24); |
|
1595 |
this.DockWindowComment.Name = "DockWindowComment"; |
|
1596 |
this.DockWindowComment.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked; |
|
1597 |
this.DockWindowComment.Size = new System.Drawing.Size(279, 288); |
|
1598 |
this.DockWindowComment.Text = "Comment"; |
|
1599 |
// |
|
1600 |
// radPageViewComment |
|
1601 |
// |
|
1602 |
this.radPageViewComment.Controls.Add(this.radPageViewPageReview); |
|
1603 |
this.radPageViewComment.Controls.Add(this.radPageViewPageValidation); |
|
1604 |
this.radPageViewComment.Dock = System.Windows.Forms.DockStyle.Fill; |
|
1605 |
this.radPageViewComment.Location = new System.Drawing.Point(0, 0); |
|
1606 |
this.radPageViewComment.Name = "radPageViewComment"; |
|
1607 |
this.radPageViewComment.SelectedPage = this.radPageViewPageReview; |
|
1608 |
this.radPageViewComment.Size = new System.Drawing.Size(279, 288); |
|
1609 |
this.radPageViewComment.TabIndex = 1; |
|
1610 |
// |
|
1611 |
// radPageViewPageReview |
|
1612 |
// |
|
1613 |
this.radPageViewPageReview.ItemSize = new System.Drawing.SizeF(39F, 28F); |
|
1614 |
this.radPageViewPageReview.Location = new System.Drawing.Point(10, 37); |
|
1615 |
this.radPageViewPageReview.Name = "radPageViewPageReview"; |
|
1616 |
this.radPageViewPageReview.Size = new System.Drawing.Size(258, 240); |
|
1617 |
this.radPageViewPageReview.Text = "검토"; |
|
1618 |
// |
|
1619 |
// radPageViewPageValidation |
|
1620 |
// |
|
1621 |
this.radPageViewPageValidation.ItemSize = new System.Drawing.SizeF(39F, 28F); |
|
1622 |
this.radPageViewPageValidation.Location = new System.Drawing.Point(10, 37); |
|
1623 |
this.radPageViewPageValidation.Name = "radPageViewPageValidation"; |
|
1624 |
this.radPageViewPageValidation.Size = new System.Drawing.Size(258, 240); |
|
1625 |
this.radPageViewPageValidation.Text = "검증"; |
|
1626 |
// |
|
1616 | 1627 |
// toolTabStrip3 |
1617 | 1628 |
// |
1618 | 1629 |
this.toolTabStrip3.CausesValidation = false; |
... | ... | |
1630 | 1641 |
this.toolTabStrip3.TabIndex = 3; |
1631 | 1642 |
this.toolTabStrip3.TabStop = false; |
1632 | 1643 |
// |
1633 |
// DockWindowViewer |
|
1634 |
// |
|
1635 |
this.DockWindowViewer.Caption = null; |
|
1636 |
this.DockWindowViewer.Controls.Add(this.radPageViewViewer); |
|
1637 |
this.DockWindowViewer.Font = new System.Drawing.Font("굴림", 9F); |
|
1638 |
this.DockWindowViewer.Location = new System.Drawing.Point(1, 24); |
|
1639 |
this.DockWindowViewer.Name = "DockWindowViewer"; |
|
1640 |
this.DockWindowViewer.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked; |
|
1641 |
this.DockWindowViewer.Size = new System.Drawing.Size(279, 289); |
|
1642 |
this.DockWindowViewer.Text = "Viewer"; |
|
1643 |
// |
|
1644 | 1644 |
// Main |
1645 | 1645 |
// |
1646 | 1646 |
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); |
... | ... | |
1711 | 1711 |
((System.ComponentModel.ISupportInitialize)(this.radStatusStripMain)).EndInit(); |
1712 | 1712 |
((System.ComponentModel.ISupportInitialize)(this.DockMain)).EndInit(); |
1713 | 1713 |
this.DockMain.ResumeLayout(false); |
1714 |
this.DockWindowComment.ResumeLayout(false); |
|
1715 |
((System.ComponentModel.ISupportInitialize)(this.radPageViewComment)).EndInit(); |
|
1716 |
this.radPageViewComment.ResumeLayout(false); |
|
1714 |
this.DockWindowViewer.ResumeLayout(false); |
|
1717 | 1715 |
((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).EndInit(); |
1718 | 1716 |
this.documentContainer1.ResumeLayout(false); |
1719 | 1717 |
((System.ComponentModel.ISupportInitialize)(this.documentTabStrip1)).EndInit(); |
... | ... | |
1723 | 1721 |
this.radSplitContainer1.ResumeLayout(false); |
1724 | 1722 |
((System.ComponentModel.ISupportInitialize)(this.toolTabStrip2)).EndInit(); |
1725 | 1723 |
this.toolTabStrip2.ResumeLayout(false); |
1724 |
this.DockWindowComment.ResumeLayout(false); |
|
1725 |
((System.ComponentModel.ISupportInitialize)(this.radPageViewComment)).EndInit(); |
|
1726 |
this.radPageViewComment.ResumeLayout(false); |
|
1726 | 1727 |
((System.ComponentModel.ISupportInitialize)(this.toolTabStrip3)).EndInit(); |
1727 | 1728 |
this.toolTabStrip3.ResumeLayout(false); |
1728 |
this.DockWindowViewer.ResumeLayout(false); |
|
1729 | 1729 |
((System.ComponentModel.ISupportInitialize)(this)).EndInit(); |
1730 | 1730 |
this.ResumeLayout(false); |
1731 | 1731 |
this.PerformLayout(); |
ID2.Manager/ID2.Manager/Main.cs | ||
---|---|---|
242 | 242 |
|
243 | 243 |
//FrRemarks 추가 |
244 | 244 |
|
245 |
briefAndImagesReview.DataBindings.Add(new Binding("Brief", doc, "ToRemarks", false, DataSourceUpdateMode.OnValidation, null)); |
|
246 |
briefAndImagesValidation.DataBindings.Add(new Binding("Brief",doc, "ClientRemarks", false,DataSourceUpdateMode.OnValidation,null)); |
|
245 |
briefAndImagesReview.DataBindings.Add(new Binding("BriefDoftech", doc, "ToRemarks", false, DataSourceUpdateMode.OnValidation, null)); |
|
246 |
///briefAndImagesReview.DataBindings.Add(new Binding("BriefSec", doc, "ToRemarks", false, DataSourceUpdateMode.OnValidation, null)); |
|
247 |
|
|
248 |
briefAndImagesValidation.DataBindings.Add(new Binding("BriefDoftech", doc, "ClientRemarks", false,DataSourceUpdateMode.OnValidation,null)); |
|
247 | 249 |
|
248 | 250 |
if (doc.AttFiles != null) |
249 | 251 |
{ |
내보내기 Unified diff