개정판 7aa369fc
issue #00000 brief와 image를 함께 출력하기 위해 컨트롤 추가
Change-Id: Ia72b5e73957fe92387d54fc38dbba8791f1558bd
ID2.Manager/ID2.Manager/Controls/BriefAndImages.Designer.cs | ||
---|---|---|
1 |
|
|
2 |
namespace ID2.Manager.Controls |
|
3 |
{ |
|
4 |
partial class BriefAndImages |
|
5 |
{ |
|
6 |
/// <summary> |
|
7 |
/// 필수 디자이너 변수입니다. |
|
8 |
/// </summary> |
|
9 |
private System.ComponentModel.IContainer components = null; |
|
10 | ||
11 |
/// <summary> |
|
12 |
/// 사용 중인 모든 리소스를 정리합니다. |
|
13 |
/// </summary> |
|
14 |
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param> |
|
15 |
protected override void Dispose(bool disposing) |
|
16 |
{ |
|
17 |
if (disposing && (components != null)) |
|
18 |
{ |
|
19 |
components.Dispose(); |
|
20 |
} |
|
21 |
base.Dispose(disposing); |
|
22 |
} |
|
23 | ||
24 |
#region 구성 요소 디자이너에서 생성한 코드 |
|
25 | ||
26 |
/// <summary> |
|
27 |
/// 디자이너 지원에 필요한 메서드입니다. |
|
28 |
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. |
|
29 |
/// </summary> |
|
30 |
private void InitializeComponent() |
|
31 |
{ |
|
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 |
this.LayoutImages = new System.Windows.Forms.TableLayoutPanel(); |
|
36 |
this.lvImages = new System.Windows.Forms.ListView(); |
|
37 |
this.txtBrief = new Telerik.WinControls.UI.RadTextBox(); |
|
38 |
this.LayoutRoot.SuspendLayout(); |
|
39 |
this.LayoutBrief.SuspendLayout(); |
|
40 |
this.LayoutImages.SuspendLayout(); |
|
41 |
((System.ComponentModel.ISupportInitialize)(this.txtBrief)).BeginInit(); |
|
42 |
this.SuspendLayout(); |
|
43 |
// |
|
44 |
// LayoutRoot |
|
45 |
// |
|
46 |
this.LayoutRoot.ColumnCount = 1; |
|
47 |
this.LayoutRoot.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); |
|
48 |
this.LayoutRoot.Controls.Add(this.LayoutBrief, 0, 0); |
|
49 |
this.LayoutRoot.Controls.Add(this.LayoutImages, 0, 1); |
|
50 |
this.LayoutRoot.Dock = System.Windows.Forms.DockStyle.Fill; |
|
51 |
this.LayoutRoot.Location = new System.Drawing.Point(0, 0); |
|
52 |
this.LayoutRoot.Name = "LayoutRoot"; |
|
53 |
this.LayoutRoot.RowCount = 2; |
|
54 |
this.LayoutRoot.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 22.22222F)); |
|
55 |
this.LayoutRoot.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 77.77778F)); |
|
56 |
this.LayoutRoot.Size = new System.Drawing.Size(371, 483); |
|
57 |
this.LayoutRoot.TabIndex = 0; |
|
58 |
// |
|
59 |
// LayoutBrief |
|
60 |
// |
|
61 |
this.LayoutBrief.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single; |
|
62 |
this.LayoutBrief.ColumnCount = 2; |
|
63 |
this.LayoutBrief.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); |
|
64 |
this.LayoutBrief.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); |
|
65 |
this.LayoutBrief.Controls.Add(this.lbBrief, 0, 0); |
|
66 |
this.LayoutBrief.Controls.Add(this.txtBrief, 1, 0); |
|
67 |
this.LayoutBrief.Dock = System.Windows.Forms.DockStyle.Fill; |
|
68 |
this.LayoutBrief.Location = new System.Drawing.Point(3, 3); |
|
69 |
this.LayoutBrief.Name = "LayoutBrief"; |
|
70 |
this.LayoutBrief.RowCount = 1; |
|
71 |
this.LayoutBrief.RowStyles.Add(new System.Windows.Forms.RowStyle()); |
|
72 |
this.LayoutBrief.Size = new System.Drawing.Size(365, 101); |
|
73 |
this.LayoutBrief.TabIndex = 0; |
|
74 |
// |
|
75 |
// lbBrief |
|
76 |
// |
|
77 |
this.lbBrief.AutoSize = true; |
|
78 |
this.lbBrief.BackColor = System.Drawing.Color.Transparent; |
|
79 |
this.lbBrief.Dock = System.Windows.Forms.DockStyle.Fill; |
|
80 |
this.lbBrief.Location = new System.Drawing.Point(4, 1); |
|
81 |
this.lbBrief.Name = "lbBrief"; |
|
82 |
this.lbBrief.Size = new System.Drawing.Size(30, 99); |
|
83 |
this.lbBrief.TabIndex = 0; |
|
84 |
this.lbBrief.Text = "Brief"; |
|
85 |
this.lbBrief.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
86 |
// |
|
87 |
// LayoutImages |
|
88 |
// |
|
89 |
this.LayoutImages.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single; |
|
90 |
this.LayoutImages.ColumnCount = 2; |
|
91 |
this.LayoutImages.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F)); |
|
92 |
this.LayoutImages.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F)); |
|
93 |
this.LayoutImages.Controls.Add(this.lvImages, 0, 0); |
|
94 |
this.LayoutImages.Dock = System.Windows.Forms.DockStyle.Fill; |
|
95 |
this.LayoutImages.Location = new System.Drawing.Point(3, 110); |
|
96 |
this.LayoutImages.Name = "LayoutImages"; |
|
97 |
this.LayoutImages.RowCount = 1; |
|
98 |
this.LayoutImages.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
|
99 |
this.LayoutImages.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); |
|
100 |
this.LayoutImages.Size = new System.Drawing.Size(365, 370); |
|
101 |
this.LayoutImages.TabIndex = 1; |
|
102 |
// |
|
103 |
// lvImages |
|
104 |
// |
|
105 |
this.lvImages.Dock = System.Windows.Forms.DockStyle.Fill; |
|
106 |
this.lvImages.HideSelection = false; |
|
107 |
this.lvImages.Location = new System.Drawing.Point(4, 4); |
|
108 |
this.lvImages.Name = "lvImages"; |
|
109 |
this.lvImages.Size = new System.Drawing.Size(102, 362); |
|
110 |
this.lvImages.TabIndex = 0; |
|
111 |
this.lvImages.UseCompatibleStateImageBehavior = false; |
|
112 |
// |
|
113 |
// txtBrief |
|
114 |
// |
|
115 |
this.txtBrief.Dock = System.Windows.Forms.DockStyle.Fill; |
|
116 |
this.txtBrief.Location = new System.Drawing.Point(41, 4); |
|
117 |
this.txtBrief.Multiline = true; |
|
118 |
this.txtBrief.Name = "txtBrief"; |
|
119 |
this.txtBrief.NullText = "Input Brief"; |
|
120 |
// |
|
121 |
// |
|
122 |
// |
|
123 |
this.txtBrief.RootElement.StretchVertically = true; |
|
124 |
this.txtBrief.ShowNullText = true; |
|
125 |
this.txtBrief.Size = new System.Drawing.Size(320, 93); |
|
126 |
this.txtBrief.TabIndex = 1; |
|
127 |
// |
|
128 |
// BriefAndImages |
|
129 |
// |
|
130 |
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); |
|
131 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
|
132 |
this.Controls.Add(this.LayoutRoot); |
|
133 |
this.Name = "BriefAndImages"; |
|
134 |
this.Size = new System.Drawing.Size(371, 483); |
|
135 |
this.LayoutRoot.ResumeLayout(false); |
|
136 |
this.LayoutBrief.ResumeLayout(false); |
|
137 |
this.LayoutBrief.PerformLayout(); |
|
138 |
this.LayoutImages.ResumeLayout(false); |
|
139 |
((System.ComponentModel.ISupportInitialize)(this.txtBrief)).EndInit(); |
|
140 |
this.ResumeLayout(false); |
|
141 | ||
142 |
} |
|
143 | ||
144 |
#endregion |
|
145 | ||
146 |
private System.Windows.Forms.TableLayoutPanel LayoutRoot; |
|
147 |
private System.Windows.Forms.TableLayoutPanel LayoutBrief; |
|
148 |
private System.Windows.Forms.Label lbBrief; |
|
149 |
private System.Windows.Forms.TableLayoutPanel LayoutImages; |
|
150 |
private System.Windows.Forms.ListView lvImages; |
|
151 |
private Telerik.WinControls.UI.RadTextBox txtBrief; |
|
152 |
} |
|
153 |
} |
ID2.Manager/ID2.Manager/Controls/BriefAndImages.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.ComponentModel; |
|
4 |
using System.Data; |
|
5 |
using System.Drawing; |
|
6 |
using System.Linq; |
|
7 |
using System.Text; |
|
8 |
using System.Threading.Tasks; |
|
9 |
using System.Windows.Forms; |
|
10 |
using Telerik.WinControls; |
|
11 | ||
12 |
namespace ID2.Manager.Controls |
|
13 |
{ |
|
14 |
public partial class BriefAndImages : UserControl |
|
15 |
{ |
|
16 |
public BriefAndImages() |
|
17 |
{ |
|
18 |
InitializeComponent(); |
|
19 |
} |
|
20 |
|
|
21 |
private List<Bitmap> images; |
|
22 | ||
23 |
public List<Bitmap> Images { get => images; set => images = value; } |
|
24 | ||
25 |
public string Brief |
|
26 |
{ |
|
27 |
get => txtBrief.Text; set => txtBrief.Text = value; |
|
28 |
} |
|
29 |
} |
|
30 |
} |
ID2.Manager/ID2.Manager/Controls/BriefAndImages.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 2.0 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">2.0</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
<value>[base64 mime encoded serialized .NET Framework object]</value> |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> |
|
27 |
<comment>This is a comment</comment> |
|
28 |
</data> |
|
29 |
|
|
30 |
There are any number of "resheader" rows that contain simple |
|
31 |
name/value pairs. |
|
32 |
|
|
33 |
Each data row contains a name, and value. The row also contains a |
|
34 |
type or mimetype. Type corresponds to a .NET class that support |
|
35 |
text/value conversion through the TypeConverter architecture. |
|
36 |
Classes that don't support this are serialized and stored with the |
|
37 |
mimetype set. |
|
38 |
|
|
39 |
The mimetype is used for serialized objects, and tells the |
|
40 |
ResXResourceReader how to depersist the object. This is currently not |
|
41 |
extensible. For a given mimetype the value must be set accordingly: |
|
42 |
|
|
43 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
44 |
that the ResXResourceWriter will generate, however the reader can |
|
45 |
read any of the formats listed below. |
|
46 |
|
|
47 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
48 |
value : The object must be serialized with |
|
49 |
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter |
|
50 |
: and then encoded with base64 encoding. |
|
51 |
|
|
52 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
53 |
value : The object must be serialized with |
|
54 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
55 |
: and then encoded with base64 encoding. |
|
56 | ||
57 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
58 |
value : The object must be serialized into a byte array |
|
59 |
: using a System.ComponentModel.TypeConverter |
|
60 |
: and then encoded with base64 encoding. |
|
61 |
--> |
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> |
|
64 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
65 |
<xsd:complexType> |
|
66 |
<xsd:choice maxOccurs="unbounded"> |
|
67 |
<xsd:element name="metadata"> |
|
68 |
<xsd:complexType> |
|
69 |
<xsd:sequence> |
|
70 |
<xsd:element name="value" type="xsd:string" minOccurs="0" /> |
|
71 |
</xsd:sequence> |
|
72 |
<xsd:attribute name="name" use="required" type="xsd:string" /> |
|
73 |
<xsd:attribute name="type" type="xsd:string" /> |
|
74 |
<xsd:attribute name="mimetype" type="xsd:string" /> |
|
75 |
<xsd:attribute ref="xml:space" /> |
|
76 |
</xsd:complexType> |
|
77 |
</xsd:element> |
|
78 |
<xsd:element name="assembly"> |
|
79 |
<xsd:complexType> |
|
80 |
<xsd:attribute name="alias" type="xsd:string" /> |
|
81 |
<xsd:attribute name="name" type="xsd:string" /> |
|
82 |
</xsd:complexType> |
|
83 |
</xsd:element> |
|
84 |
<xsd:element name="data"> |
|
85 |
<xsd:complexType> |
|
86 |
<xsd:sequence> |
|
87 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
88 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
89 |
</xsd:sequence> |
|
90 |
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> |
|
91 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
92 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
93 |
<xsd:attribute ref="xml:space" /> |
|
94 |
</xsd:complexType> |
|
95 |
</xsd:element> |
|
96 |
<xsd:element name="resheader"> |
|
97 |
<xsd:complexType> |
|
98 |
<xsd:sequence> |
|
99 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
100 |
</xsd:sequence> |
|
101 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
102 |
</xsd:complexType> |
|
103 |
</xsd:element> |
|
104 |
</xsd:choice> |
|
105 |
</xsd:complexType> |
|
106 |
</xsd:element> |
|
107 |
</xsd:schema> |
|
108 |
<resheader name="resmimetype"> |
|
109 |
<value>text/microsoft-resx</value> |
|
110 |
</resheader> |
|
111 |
<resheader name="version"> |
|
112 |
<value>2.0</value> |
|
113 |
</resheader> |
|
114 |
<resheader name="reader"> |
|
115 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
116 |
</resheader> |
|
117 |
<resheader name="writer"> |
|
118 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
119 |
</resheader> |
|
120 |
</root> |
ID2.Manager/ID2.Manager/Controls/CommentViewer.Designer.cs | ||
---|---|---|
32 | 32 |
this.radPageView1 = new Telerik.WinControls.UI.RadPageView(); |
33 | 33 |
this.radPageViewComment = new Telerik.WinControls.UI.RadPageView(); |
34 | 34 |
this.radPageViewPageReview = new Telerik.WinControls.UI.RadPageViewPage(); |
35 |
this.radPageViewPageWorking = new Telerik.WinControls.UI.RadPageViewPage(); |
|
36 |
this.radPageViewPageValidation = new Telerik.WinControls.UI.RadPageViewPage(); |
|
37 | 35 |
this.radSplitContainerReview = new Telerik.WinControls.UI.RadSplitContainer(); |
38 |
this.splitPanel1 = new Telerik.WinControls.UI.SplitPanel(); |
|
39 |
this.splitPanel2 = new Telerik.WinControls.UI.SplitPanel(); |
|
40 |
this.radSplitContainerWorking = new Telerik.WinControls.UI.RadSplitContainer(); |
|
41 |
this.splitPanel3 = new Telerik.WinControls.UI.SplitPanel(); |
|
42 |
this.splitPanel4 = new Telerik.WinControls.UI.SplitPanel(); |
|
36 |
this.panelReview = new Telerik.WinControls.UI.SplitPanel(); |
|
37 |
this.radPageViewPageValidation = new Telerik.WinControls.UI.RadPageViewPage(); |
|
43 | 38 |
this.radSplitContainerValidation = new Telerik.WinControls.UI.RadSplitContainer(); |
44 |
this.splitPanel5 = new Telerik.WinControls.UI.SplitPanel(); |
|
45 |
this.splitPanel6 = new Telerik.WinControls.UI.SplitPanel(); |
|
46 |
this.radRichTextEditorWorkerReview = new Telerik.WinControls.UI.RadRichTextEditor(); |
|
47 |
this.radRichTextEditorEngineerReview = new Telerik.WinControls.UI.RadRichTextEditor(); |
|
48 |
this.radRichTextEditorWorkerWorking = new Telerik.WinControls.UI.RadRichTextEditor(); |
|
49 |
this.radRichTextEditorEngineerWorking = new Telerik.WinControls.UI.RadRichTextEditor(); |
|
50 |
this.radRichTextEditorWorkerValidation = new Telerik.WinControls.UI.RadRichTextEditor(); |
|
51 |
this.radRichTextEditorEngineerValidation = new Telerik.WinControls.UI.RadRichTextEditor(); |
|
39 |
this.panelValidation = new Telerik.WinControls.UI.SplitPanel(); |
|
52 | 40 |
((System.ComponentModel.ISupportInitialize)(this.radPageView1)).BeginInit(); |
53 | 41 |
((System.ComponentModel.ISupportInitialize)(this.radPageViewComment)).BeginInit(); |
54 | 42 |
this.radPageViewComment.SuspendLayout(); |
55 | 43 |
this.radPageViewPageReview.SuspendLayout(); |
56 |
this.radPageViewPageWorking.SuspendLayout(); |
|
57 |
this.radPageViewPageValidation.SuspendLayout(); |
|
58 | 44 |
((System.ComponentModel.ISupportInitialize)(this.radSplitContainerReview)).BeginInit(); |
59 | 45 |
this.radSplitContainerReview.SuspendLayout(); |
60 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).BeginInit(); |
|
61 |
this.splitPanel1.SuspendLayout(); |
|
62 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).BeginInit(); |
|
63 |
this.splitPanel2.SuspendLayout(); |
|
64 |
((System.ComponentModel.ISupportInitialize)(this.radSplitContainerWorking)).BeginInit(); |
|
65 |
this.radSplitContainerWorking.SuspendLayout(); |
|
66 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel3)).BeginInit(); |
|
67 |
this.splitPanel3.SuspendLayout(); |
|
68 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel4)).BeginInit(); |
|
69 |
this.splitPanel4.SuspendLayout(); |
|
46 |
((System.ComponentModel.ISupportInitialize)(this.panelReview)).BeginInit(); |
|
47 |
this.radPageViewPageValidation.SuspendLayout(); |
|
70 | 48 |
((System.ComponentModel.ISupportInitialize)(this.radSplitContainerValidation)).BeginInit(); |
71 | 49 |
this.radSplitContainerValidation.SuspendLayout(); |
72 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel5)).BeginInit(); |
|
73 |
this.splitPanel5.SuspendLayout(); |
|
74 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel6)).BeginInit(); |
|
75 |
this.splitPanel6.SuspendLayout(); |
|
76 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorWorkerReview)).BeginInit(); |
|
77 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorEngineerReview)).BeginInit(); |
|
78 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorWorkerWorking)).BeginInit(); |
|
79 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorEngineerWorking)).BeginInit(); |
|
80 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorWorkerValidation)).BeginInit(); |
|
81 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorEngineerValidation)).BeginInit(); |
|
50 |
((System.ComponentModel.ISupportInitialize)(this.panelValidation)).BeginInit(); |
|
82 | 51 |
this.SuspendLayout(); |
83 | 52 |
// |
84 | 53 |
// radPageView1 |
... | ... | |
91 | 60 |
// radPageViewComment |
92 | 61 |
// |
93 | 62 |
this.radPageViewComment.Controls.Add(this.radPageViewPageReview); |
94 |
this.radPageViewComment.Controls.Add(this.radPageViewPageWorking); |
|
95 | 63 |
this.radPageViewComment.Controls.Add(this.radPageViewPageValidation); |
96 | 64 |
this.radPageViewComment.Dock = System.Windows.Forms.DockStyle.Fill; |
97 | 65 |
this.radPageViewComment.Location = new System.Drawing.Point(0, 0); |
98 | 66 |
this.radPageViewComment.Name = "radPageViewComment"; |
99 | 67 |
this.radPageViewComment.SelectedPage = this.radPageViewPageReview; |
100 |
this.radPageViewComment.Size = new System.Drawing.Size(487, 360);
|
|
68 |
this.radPageViewComment.Size = new System.Drawing.Size(150, 100);
|
|
101 | 69 |
this.radPageViewComment.TabIndex = 0; |
102 | 70 |
// |
103 | 71 |
// radPageViewPageReview |
... | ... | |
106 | 74 |
this.radPageViewPageReview.ItemSize = new System.Drawing.SizeF(39F, 28F); |
107 | 75 |
this.radPageViewPageReview.Location = new System.Drawing.Point(10, 37); |
108 | 76 |
this.radPageViewPageReview.Name = "radPageViewPageReview"; |
109 |
this.radPageViewPageReview.Size = new System.Drawing.Size(466, 312);
|
|
77 |
this.radPageViewPageReview.Size = new System.Drawing.Size(129, 52);
|
|
110 | 78 |
this.radPageViewPageReview.Text = "검토"; |
111 | 79 |
// |
112 |
// radPageViewPageWorking |
|
113 |
// |
|
114 |
this.radPageViewPageWorking.Controls.Add(this.radSplitContainerWorking); |
|
115 |
this.radPageViewPageWorking.ItemSize = new System.Drawing.SizeF(39F, 28F); |
|
116 |
this.radPageViewPageWorking.Location = new System.Drawing.Point(10, 37); |
|
117 |
this.radPageViewPageWorking.Name = "radPageViewPageWorking"; |
|
118 |
this.radPageViewPageWorking.Size = new System.Drawing.Size(466, 312); |
|
119 |
this.radPageViewPageWorking.Text = "작업"; |
|
120 |
// |
|
121 |
// radPageViewPageValidation |
|
122 |
// |
|
123 |
this.radPageViewPageValidation.Controls.Add(this.radSplitContainerValidation); |
|
124 |
this.radPageViewPageValidation.ItemSize = new System.Drawing.SizeF(39F, 28F); |
|
125 |
this.radPageViewPageValidation.Location = new System.Drawing.Point(10, 37); |
|
126 |
this.radPageViewPageValidation.Name = "radPageViewPageValidation"; |
|
127 |
this.radPageViewPageValidation.Size = new System.Drawing.Size(466, 312); |
|
128 |
this.radPageViewPageValidation.Text = "검증"; |
|
129 |
// |
|
130 | 80 |
// radSplitContainerReview |
131 | 81 |
// |
132 |
this.radSplitContainerReview.Controls.Add(this.splitPanel1); |
|
133 |
this.radSplitContainerReview.Controls.Add(this.splitPanel2); |
|
82 |
this.radSplitContainerReview.Controls.Add(this.panelReview); |
|
134 | 83 |
this.radSplitContainerReview.Dock = System.Windows.Forms.DockStyle.Fill; |
135 | 84 |
this.radSplitContainerReview.Location = new System.Drawing.Point(0, 0); |
136 | 85 |
this.radSplitContainerReview.Name = "radSplitContainerReview"; |
... | ... | |
138 | 87 |
// |
139 | 88 |
// |
140 | 89 |
this.radSplitContainerReview.RootElement.MinSize = new System.Drawing.Size(25, 25); |
141 |
this.radSplitContainerReview.Size = new System.Drawing.Size(466, 312);
|
|
90 |
this.radSplitContainerReview.Size = new System.Drawing.Size(129, 52);
|
|
142 | 91 |
this.radSplitContainerReview.TabIndex = 0; |
143 | 92 |
this.radSplitContainerReview.TabStop = false; |
144 | 93 |
// |
145 |
// splitPanel1 |
|
146 |
// |
|
147 |
this.splitPanel1.Controls.Add(this.radRichTextEditorWorkerReview); |
|
148 |
this.splitPanel1.Location = new System.Drawing.Point(0, 0); |
|
149 |
this.splitPanel1.Name = "splitPanel1"; |
|
150 |
// |
|
151 |
// |
|
152 |
// |
|
153 |
this.splitPanel1.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
154 |
this.splitPanel1.Size = new System.Drawing.Size(231, 312); |
|
155 |
this.splitPanel1.TabIndex = 0; |
|
156 |
this.splitPanel1.TabStop = false; |
|
157 |
this.splitPanel1.Text = "splitPanel1"; |
|
158 |
// |
|
159 |
// splitPanel2 |
|
160 |
// |
|
161 |
this.splitPanel2.Controls.Add(this.radRichTextEditorEngineerReview); |
|
162 |
this.splitPanel2.Location = new System.Drawing.Point(235, 0); |
|
163 |
this.splitPanel2.Name = "splitPanel2"; |
|
164 |
// |
|
165 |
// |
|
166 |
// |
|
167 |
this.splitPanel2.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
168 |
this.splitPanel2.Size = new System.Drawing.Size(231, 312); |
|
169 |
this.splitPanel2.TabIndex = 1; |
|
170 |
this.splitPanel2.TabStop = false; |
|
171 |
this.splitPanel2.Text = "splitPanel2"; |
|
172 |
// |
|
173 |
// radSplitContainerWorking |
|
174 |
// |
|
175 |
this.radSplitContainerWorking.Controls.Add(this.splitPanel3); |
|
176 |
this.radSplitContainerWorking.Controls.Add(this.splitPanel4); |
|
177 |
this.radSplitContainerWorking.Dock = System.Windows.Forms.DockStyle.Fill; |
|
178 |
this.radSplitContainerWorking.Location = new System.Drawing.Point(0, 0); |
|
179 |
this.radSplitContainerWorking.Name = "radSplitContainerWorking"; |
|
180 |
// |
|
181 |
// |
|
182 |
// |
|
183 |
this.radSplitContainerWorking.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
184 |
this.radSplitContainerWorking.Size = new System.Drawing.Size(466, 312); |
|
185 |
this.radSplitContainerWorking.TabIndex = 0; |
|
186 |
this.radSplitContainerWorking.TabStop = false; |
|
187 |
// |
|
188 |
// splitPanel3 |
|
94 |
// panelReview |
|
189 | 95 |
// |
190 |
this.splitPanel3.Controls.Add(this.radRichTextEditorWorkerWorking);
|
|
191 |
this.splitPanel3.Location = new System.Drawing.Point(0, 0);
|
|
192 |
this.splitPanel3.Name = "splitPanel3";
|
|
96 |
this.panelReview.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
97 |
this.panelReview.Location = new System.Drawing.Point(0, 0);
|
|
98 |
this.panelReview.Name = "panelReview";
|
|
193 | 99 |
// |
194 | 100 |
// |
195 | 101 |
// |
196 |
this.splitPanel3.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
197 |
this.splitPanel3.Size = new System.Drawing.Size(231, 312); |
|
198 |
this.splitPanel3.TabIndex = 0; |
|
199 |
this.splitPanel3.TabStop = false; |
|
200 |
this.splitPanel3.Text = "splitPanel3"; |
|
201 |
// |
|
202 |
// splitPanel4 |
|
203 |
// |
|
204 |
this.splitPanel4.Controls.Add(this.radRichTextEditorEngineerWorking); |
|
205 |
this.splitPanel4.Location = new System.Drawing.Point(235, 0); |
|
206 |
this.splitPanel4.Name = "splitPanel4"; |
|
207 |
// |
|
102 |
this.panelReview.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
103 |
this.panelReview.Size = new System.Drawing.Size(129, 52); |
|
104 |
this.panelReview.TabIndex = 0; |
|
105 |
this.panelReview.TabStop = false; |
|
106 |
this.panelReview.Text = "splitPanel1"; |
|
208 | 107 |
// |
108 |
// radPageViewPageValidation |
|
209 | 109 |
// |
210 |
this.splitPanel4.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
211 |
this.splitPanel4.Size = new System.Drawing.Size(231, 312); |
|
212 |
this.splitPanel4.TabIndex = 1; |
|
213 |
this.splitPanel4.TabStop = false; |
|
214 |
this.splitPanel4.Text = "splitPanel4"; |
|
110 |
this.radPageViewPageValidation.Controls.Add(this.radSplitContainerValidation); |
|
111 |
this.radPageViewPageValidation.ItemSize = new System.Drawing.SizeF(39F, 28F); |
|
112 |
this.radPageViewPageValidation.Location = new System.Drawing.Point(10, 37); |
|
113 |
this.radPageViewPageValidation.Name = "radPageViewPageValidation"; |
|
114 |
this.radPageViewPageValidation.Size = new System.Drawing.Size(129, 52); |
|
115 |
this.radPageViewPageValidation.Text = "검증"; |
|
215 | 116 |
// |
216 | 117 |
// radSplitContainerValidation |
217 | 118 |
// |
218 |
this.radSplitContainerValidation.Controls.Add(this.splitPanel5); |
|
219 |
this.radSplitContainerValidation.Controls.Add(this.splitPanel6); |
|
119 |
this.radSplitContainerValidation.Controls.Add(this.panelValidation); |
|
220 | 120 |
this.radSplitContainerValidation.Dock = System.Windows.Forms.DockStyle.Fill; |
221 | 121 |
this.radSplitContainerValidation.Location = new System.Drawing.Point(0, 0); |
222 | 122 |
this.radSplitContainerValidation.Name = "radSplitContainerValidation"; |
... | ... | |
224 | 124 |
// |
225 | 125 |
// |
226 | 126 |
this.radSplitContainerValidation.RootElement.MinSize = new System.Drawing.Size(25, 25); |
227 |
this.radSplitContainerValidation.Size = new System.Drawing.Size(466, 312);
|
|
127 |
this.radSplitContainerValidation.Size = new System.Drawing.Size(129, 52);
|
|
228 | 128 |
this.radSplitContainerValidation.TabIndex = 0; |
229 | 129 |
this.radSplitContainerValidation.TabStop = false; |
230 | 130 |
// |
231 |
// splitPanel5 |
|
232 |
// |
|
233 |
this.splitPanel5.Controls.Add(this.radRichTextEditorWorkerValidation); |
|
234 |
this.splitPanel5.Location = new System.Drawing.Point(0, 0); |
|
235 |
this.splitPanel5.Name = "splitPanel5"; |
|
236 |
// |
|
237 |
// |
|
238 |
// |
|
239 |
this.splitPanel5.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
240 |
this.splitPanel5.Size = new System.Drawing.Size(231, 312); |
|
241 |
this.splitPanel5.TabIndex = 0; |
|
242 |
this.splitPanel5.TabStop = false; |
|
243 |
this.splitPanel5.Text = "splitPanel5"; |
|
244 |
// |
|
245 |
// splitPanel6 |
|
131 |
// panelValidation |
|
246 | 132 |
// |
247 |
this.splitPanel6.Controls.Add(this.radRichTextEditorEngineerValidation);
|
|
248 |
this.splitPanel6.Location = new System.Drawing.Point(235, 0);
|
|
249 |
this.splitPanel6.Name = "splitPanel6";
|
|
133 |
this.panelValidation.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
134 |
this.panelValidation.Location = new System.Drawing.Point(0, 0);
|
|
135 |
this.panelValidation.Name = "panelValidation";
|
|
250 | 136 |
// |
251 | 137 |
// |
252 | 138 |
// |
253 |
this.splitPanel6.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
254 |
this.splitPanel6.Size = new System.Drawing.Size(231, 312); |
|
255 |
this.splitPanel6.TabIndex = 1; |
|
256 |
this.splitPanel6.TabStop = false; |
|
257 |
this.splitPanel6.Text = "splitPanel6"; |
|
258 |
// |
|
259 |
// radRichTextEditorWorkerReview |
|
260 |
// |
|
261 |
this.radRichTextEditorWorkerReview.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232))))); |
|
262 |
this.radRichTextEditorWorkerReview.Dock = System.Windows.Forms.DockStyle.Fill; |
|
263 |
this.radRichTextEditorWorkerReview.Location = new System.Drawing.Point(0, 0); |
|
264 |
this.radRichTextEditorWorkerReview.Name = "radRichTextEditorWorkerReview"; |
|
265 |
this.radRichTextEditorWorkerReview.SelectionFill = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(78)))), ((int)(((byte)(158)))), ((int)(((byte)(255))))); |
|
266 |
this.radRichTextEditorWorkerReview.Size = new System.Drawing.Size(231, 312); |
|
267 |
this.radRichTextEditorWorkerReview.TabIndex = 0; |
|
268 |
// |
|
269 |
// radRichTextEditorEngineerReview |
|
270 |
// |
|
271 |
this.radRichTextEditorEngineerReview.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232))))); |
|
272 |
this.radRichTextEditorEngineerReview.Dock = System.Windows.Forms.DockStyle.Fill; |
|
273 |
this.radRichTextEditorEngineerReview.Location = new System.Drawing.Point(0, 0); |
|
274 |
this.radRichTextEditorEngineerReview.Name = "radRichTextEditorEngineerReview"; |
|
275 |
this.radRichTextEditorEngineerReview.SelectionFill = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(78)))), ((int)(((byte)(158)))), ((int)(((byte)(255))))); |
|
276 |
this.radRichTextEditorEngineerReview.Size = new System.Drawing.Size(231, 312); |
|
277 |
this.radRichTextEditorEngineerReview.TabIndex = 0; |
|
278 |
// |
|
279 |
// radRichTextEditorWorkerWorking |
|
280 |
// |
|
281 |
this.radRichTextEditorWorkerWorking.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232))))); |
|
282 |
this.radRichTextEditorWorkerWorking.Dock = System.Windows.Forms.DockStyle.Fill; |
|
283 |
this.radRichTextEditorWorkerWorking.Location = new System.Drawing.Point(0, 0); |
|
284 |
this.radRichTextEditorWorkerWorking.Name = "radRichTextEditorWorkerWorking"; |
|
285 |
this.radRichTextEditorWorkerWorking.SelectionFill = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(78)))), ((int)(((byte)(158)))), ((int)(((byte)(255))))); |
|
286 |
this.radRichTextEditorWorkerWorking.Size = new System.Drawing.Size(231, 312); |
|
287 |
this.radRichTextEditorWorkerWorking.TabIndex = 0; |
|
288 |
// |
|
289 |
// radRichTextEditorEngineerWorking |
|
290 |
// |
|
291 |
this.radRichTextEditorEngineerWorking.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232))))); |
|
292 |
this.radRichTextEditorEngineerWorking.Dock = System.Windows.Forms.DockStyle.Fill; |
|
293 |
this.radRichTextEditorEngineerWorking.Location = new System.Drawing.Point(0, 0); |
|
294 |
this.radRichTextEditorEngineerWorking.Name = "radRichTextEditorEngineerWorking"; |
|
295 |
this.radRichTextEditorEngineerWorking.SelectionFill = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(78)))), ((int)(((byte)(158)))), ((int)(((byte)(255))))); |
|
296 |
this.radRichTextEditorEngineerWorking.Size = new System.Drawing.Size(231, 312); |
|
297 |
this.radRichTextEditorEngineerWorking.TabIndex = 0; |
|
298 |
// |
|
299 |
// radRichTextEditorWorkerValidation |
|
300 |
// |
|
301 |
this.radRichTextEditorWorkerValidation.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232))))); |
|
302 |
this.radRichTextEditorWorkerValidation.Dock = System.Windows.Forms.DockStyle.Fill; |
|
303 |
this.radRichTextEditorWorkerValidation.Location = new System.Drawing.Point(0, 0); |
|
304 |
this.radRichTextEditorWorkerValidation.Name = "radRichTextEditorWorkerValidation"; |
|
305 |
this.radRichTextEditorWorkerValidation.SelectionFill = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(78)))), ((int)(((byte)(158)))), ((int)(((byte)(255))))); |
|
306 |
this.radRichTextEditorWorkerValidation.Size = new System.Drawing.Size(231, 312); |
|
307 |
this.radRichTextEditorWorkerValidation.TabIndex = 0; |
|
308 |
// |
|
309 |
// radRichTextEditorEngineerValidation |
|
310 |
// |
|
311 |
this.radRichTextEditorEngineerValidation.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232))))); |
|
312 |
this.radRichTextEditorEngineerValidation.Dock = System.Windows.Forms.DockStyle.Fill; |
|
313 |
this.radRichTextEditorEngineerValidation.Location = new System.Drawing.Point(0, 0); |
|
314 |
this.radRichTextEditorEngineerValidation.Name = "radRichTextEditorEngineerValidation"; |
|
315 |
this.radRichTextEditorEngineerValidation.SelectionFill = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(78)))), ((int)(((byte)(158)))), ((int)(((byte)(255))))); |
|
316 |
this.radRichTextEditorEngineerValidation.Size = new System.Drawing.Size(231, 312); |
|
317 |
this.radRichTextEditorEngineerValidation.TabIndex = 0; |
|
139 |
this.panelValidation.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
140 |
this.panelValidation.Size = new System.Drawing.Size(129, 52); |
|
141 |
this.panelValidation.TabIndex = 0; |
|
142 |
this.panelValidation.TabStop = false; |
|
143 |
this.panelValidation.Text = "splitPanel1"; |
|
318 | 144 |
// |
319 | 145 |
// CommentViewer |
320 | 146 |
// |
321 | 147 |
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); |
322 | 148 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
149 |
this.AutoSize = true; |
|
150 |
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
|
323 | 151 |
this.Controls.Add(this.radPageViewComment); |
152 |
this.MinimumSize = new System.Drawing.Size(150, 100); |
|
324 | 153 |
this.Name = "CommentViewer"; |
325 |
this.Size = new System.Drawing.Size(487, 360);
|
|
154 |
this.Size = new System.Drawing.Size(150, 100);
|
|
326 | 155 |
((System.ComponentModel.ISupportInitialize)(this.radPageView1)).EndInit(); |
327 | 156 |
((System.ComponentModel.ISupportInitialize)(this.radPageViewComment)).EndInit(); |
328 | 157 |
this.radPageViewComment.ResumeLayout(false); |
329 | 158 |
this.radPageViewPageReview.ResumeLayout(false); |
330 |
this.radPageViewPageWorking.ResumeLayout(false); |
|
331 |
this.radPageViewPageValidation.ResumeLayout(false); |
|
332 | 159 |
((System.ComponentModel.ISupportInitialize)(this.radSplitContainerReview)).EndInit(); |
333 | 160 |
this.radSplitContainerReview.ResumeLayout(false); |
334 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).EndInit(); |
|
335 |
this.splitPanel1.ResumeLayout(false); |
|
336 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).EndInit(); |
|
337 |
this.splitPanel2.ResumeLayout(false); |
|
338 |
((System.ComponentModel.ISupportInitialize)(this.radSplitContainerWorking)).EndInit(); |
|
339 |
this.radSplitContainerWorking.ResumeLayout(false); |
|
340 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel3)).EndInit(); |
|
341 |
this.splitPanel3.ResumeLayout(false); |
|
342 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel4)).EndInit(); |
|
343 |
this.splitPanel4.ResumeLayout(false); |
|
161 |
((System.ComponentModel.ISupportInitialize)(this.panelReview)).EndInit(); |
|
162 |
this.radPageViewPageValidation.ResumeLayout(false); |
|
344 | 163 |
((System.ComponentModel.ISupportInitialize)(this.radSplitContainerValidation)).EndInit(); |
345 | 164 |
this.radSplitContainerValidation.ResumeLayout(false); |
346 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel5)).EndInit(); |
|
347 |
this.splitPanel5.ResumeLayout(false); |
|
348 |
((System.ComponentModel.ISupportInitialize)(this.splitPanel6)).EndInit(); |
|
349 |
this.splitPanel6.ResumeLayout(false); |
|
350 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorWorkerReview)).EndInit(); |
|
351 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorEngineerReview)).EndInit(); |
|
352 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorWorkerWorking)).EndInit(); |
|
353 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorEngineerWorking)).EndInit(); |
|
354 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorWorkerValidation)).EndInit(); |
|
355 |
((System.ComponentModel.ISupportInitialize)(this.radRichTextEditorEngineerValidation)).EndInit(); |
|
165 |
((System.ComponentModel.ISupportInitialize)(this.panelValidation)).EndInit(); |
|
356 | 166 |
this.ResumeLayout(false); |
357 | 167 | |
358 | 168 |
} |
... | ... | |
363 | 173 |
private Telerik.WinControls.UI.RadPageView radPageViewComment; |
364 | 174 |
private Telerik.WinControls.UI.RadPageViewPage radPageViewPageReview; |
365 | 175 |
private Telerik.WinControls.UI.RadSplitContainer radSplitContainerReview; |
366 |
private Telerik.WinControls.UI.SplitPanel splitPanel1; |
|
367 |
private Telerik.WinControls.UI.SplitPanel splitPanel2; |
|
368 |
private Telerik.WinControls.UI.RadPageViewPage radPageViewPageWorking; |
|
369 |
private Telerik.WinControls.UI.RadSplitContainer radSplitContainerWorking; |
|
370 |
private Telerik.WinControls.UI.SplitPanel splitPanel3; |
|
371 |
private Telerik.WinControls.UI.SplitPanel splitPanel4; |
|
372 | 176 |
private Telerik.WinControls.UI.RadPageViewPage radPageViewPageValidation; |
373 | 177 |
private Telerik.WinControls.UI.RadSplitContainer radSplitContainerValidation; |
374 |
private Telerik.WinControls.UI.SplitPanel splitPanel5; |
|
375 |
private Telerik.WinControls.UI.SplitPanel splitPanel6; |
|
376 |
private Telerik.WinControls.UI.RadRichTextEditor radRichTextEditorWorkerReview; |
|
377 |
private Telerik.WinControls.UI.RadRichTextEditor radRichTextEditorEngineerReview; |
|
378 |
private Telerik.WinControls.UI.RadRichTextEditor radRichTextEditorWorkerWorking; |
|
379 |
private Telerik.WinControls.UI.RadRichTextEditor radRichTextEditorEngineerWorking; |
|
380 |
private Telerik.WinControls.UI.RadRichTextEditor radRichTextEditorWorkerValidation; |
|
381 |
private Telerik.WinControls.UI.RadRichTextEditor radRichTextEditorEngineerValidation; |
|
178 |
private Telerik.WinControls.UI.SplitPanel panelReview; |
|
179 |
private Telerik.WinControls.UI.SplitPanel panelValidation; |
|
382 | 180 |
} |
383 | 181 |
} |
ID2.Manager/ID2.Manager/Controls/CommentViewer.cs | ||
---|---|---|
12 | 12 |
{ |
13 | 13 |
public partial class CommentViewer : UserControl |
14 | 14 |
{ |
15 |
private BriefAndImages BriefAndImagesReview = new BriefAndImages(); |
|
16 |
private BriefAndImages BriefAndImagesValidation = new BriefAndImages(); |
|
17 | ||
15 | 18 |
public CommentViewer() |
16 | 19 |
{ |
17 | 20 |
InitializeComponent(); |
21 | ||
22 |
panelReview.Controls.Add(BriefAndImagesReview); |
|
23 |
panelValidation.Controls.Add(BriefAndImagesValidation); |
|
24 |
} |
|
25 | ||
26 |
public void SetReviewBrief(string Brief) |
|
27 |
{ |
|
28 |
BriefAndImagesReview.Brief = Brief; |
|
29 |
} |
|
30 | ||
31 |
public void SetValidationBrief(string Brief) |
|
32 |
{ |
|
33 |
BriefAndImagesValidation.Brief = Brief; |
|
18 | 34 |
} |
35 | ||
36 |
public string GetReviewBrief() |
|
37 |
{ |
|
38 |
return BriefAndImagesReview.Brief; |
|
39 |
} |
|
40 | ||
41 |
public string GetValidationBrief() |
|
42 |
{ |
|
43 |
return BriefAndImagesValidation.Brief; |
|
44 |
} |
|
45 | ||
19 | 46 |
} |
20 | 47 |
} |
ID2.Manager/ID2.Manager/ID2.Manager.csproj | ||
---|---|---|
88 | 88 |
<Compile Include="Controls\AutoCADViewer.Designer.cs"> |
89 | 89 |
<DependentUpon>AutoCADViewer.cs</DependentUpon> |
90 | 90 |
</Compile> |
91 |
<Compile Include="Controls\BriefAndImages.cs"> |
|
92 |
<SubType>UserControl</SubType> |
|
93 |
</Compile> |
|
94 |
<Compile Include="Controls\BriefAndImages.Designer.cs"> |
|
95 |
<DependentUpon>BriefAndImages.cs</DependentUpon> |
|
96 |
</Compile> |
|
91 | 97 |
<Compile Include="Controls\CommentViewer.cs"> |
92 | 98 |
<SubType>UserControl</SubType> |
93 | 99 |
</Compile> |
... | ... | |
165 | 171 |
<EmbeddedResource Include="Controls\AutoCADViewer.resx"> |
166 | 172 |
<DependentUpon>AutoCADViewer.cs</DependentUpon> |
167 | 173 |
</EmbeddedResource> |
174 |
<EmbeddedResource Include="Controls\BriefAndImages.resx"> |
|
175 |
<DependentUpon>BriefAndImages.cs</DependentUpon> |
|
176 |
</EmbeddedResource> |
|
168 | 177 |
<EmbeddedResource Include="Controls\CommentViewer.resx"> |
169 | 178 |
<DependentUpon>CommentViewer.cs</DependentUpon> |
170 | 179 |
</EmbeddedResource> |
ID2.Manager/ID2.Manager/Main.Designer.cs | ||
---|---|---|
29 | 29 |
/// </summary> |
30 | 30 |
private void InitializeComponent() |
31 | 31 |
{ |
32 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn11 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
33 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn12 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
34 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn13 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
35 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn14 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
36 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn22 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
37 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
38 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn23 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
39 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn24 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
40 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn25 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
41 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn26 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
42 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
43 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn27 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
44 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
45 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn28 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
46 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn15 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
47 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn29 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
48 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn30 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
49 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
50 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn31 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
51 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn16 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
52 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn32 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
53 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn33 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
54 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn17 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
55 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn5 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
|
|
56 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn6 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
|
|
57 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
58 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn34 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
59 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn16 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
60 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn18 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
61 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn7 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
|
|
62 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn8 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
|
|
63 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn35 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
64 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn17 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
65 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn19 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
66 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn20 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
67 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn36 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
68 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn37 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
69 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn18 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
70 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn38 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
71 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn39 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
72 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn19 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
73 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn40 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
74 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn41 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
75 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn42 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
76 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn20 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
77 |
Telerik.WinControls.UI.TableViewDefinition tableViewDefinition2 = new Telerik.WinControls.UI.TableViewDefinition();
|
|
78 |
Telerik.WinControls.UI.GridViewRelation gridViewRelation2 = new Telerik.WinControls.UI.GridViewRelation();
|
|
32 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
|
33 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
|
34 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn3 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
|
35 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn4 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
|
36 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
37 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
38 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn(); |
|
39 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn3 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
40 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn4 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
41 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn5 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
42 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
43 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn6 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
44 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
45 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn7 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
46 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn5 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
|
47 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn8 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
48 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn9 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
49 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
50 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn10 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
51 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn6 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
|
52 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn11 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
53 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn12 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
54 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn7 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
|
55 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
|
|
56 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
|
|
57 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
58 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn13 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
59 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
60 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn8 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
|
61 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
|
|
62 |
Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
|
|
63 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn14 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
64 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
65 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn9 = new Telerik.WinControls.UI.GridViewCommandColumn(); |
|
66 |
Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn10 = new Telerik.WinControls.UI.GridViewCommandColumn();
|
|
67 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn15 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
68 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn16 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
69 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
70 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn17 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
71 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn18 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
72 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
73 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn19 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
74 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn20 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
75 |
Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn21 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
|
|
76 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
|
|
77 |
Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition();
|
|
78 |
Telerik.WinControls.UI.GridViewRelation gridViewRelation1 = new Telerik.WinControls.UI.GridViewRelation();
|
|
79 | 79 |
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main)); |
80 | 80 |
this.ID2ManagerRadRibbonBar = new Telerik.WinControls.UI.RadRibbonBar(); |
81 | 81 |
this.radRibbonBarBackstageViewID2Manager = new Telerik.WinControls.UI.RadRibbonBarBackstageView(); |
... | ... | |
464 | 464 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); |
465 | 465 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F)); |
466 | 466 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); |
467 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 73F));
|
|
467 |
this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 77F));
|
|
468 | 468 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListFrReviewStatus, 4, 1); |
469 | 469 |
this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListToIsDiscussion, 2, 1); |
470 | 470 |
this.tableLayoutPanelCondition.Controls.Add(this.radLabelFrReviewStatus, 3, 1); |
... | ... | |
514 | 514 |
this.radDropDownListFrReviewStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
515 | 515 |
this.radDropDownListFrReviewStatus.DropDownAnimationEnabled = true; |
516 | 516 |
this.radDropDownListFrReviewStatus.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
517 |
this.radDropDownListFrReviewStatus.Location = new System.Drawing.Point(349, 34);
|
|
517 |
this.radDropDownListFrReviewStatus.Location = new System.Drawing.Point(348, 34);
|
|
518 | 518 |
this.radDropDownListFrReviewStatus.Name = "radDropDownListFrReviewStatus"; |
519 |
this.radDropDownListFrReviewStatus.Size = new System.Drawing.Size(110, 20);
|
|
519 |
this.radDropDownListFrReviewStatus.Size = new System.Drawing.Size(109, 20);
|
|
520 | 520 |
this.radDropDownListFrReviewStatus.TabIndex = 18; |
521 | 521 |
// |
522 | 522 |
// radDropDownListToIsDiscussion |
... | ... | |
526 | 526 |
this.radDropDownListToIsDiscussion.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
527 | 527 |
this.radDropDownListToIsDiscussion.Location = new System.Drawing.Point(146, 34); |
528 | 528 |
this.radDropDownListToIsDiscussion.Name = "radDropDownListToIsDiscussion"; |
529 |
this.radDropDownListToIsDiscussion.Size = new System.Drawing.Size(110, 20);
|
|
529 |
this.radDropDownListToIsDiscussion.Size = new System.Drawing.Size(109, 20);
|
|
530 | 530 |
this.radDropDownListToIsDiscussion.TabIndex = 17; |
531 | 531 |
// |
532 | 532 |
// radLabelFrReviewStatus |
533 | 533 |
// |
534 | 534 |
this.radLabelFrReviewStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
535 | 535 |
this.radLabelFrReviewStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
536 |
this.radLabelFrReviewStatus.Location = new System.Drawing.Point(263, 35);
|
|
536 |
this.radLabelFrReviewStatus.Location = new System.Drawing.Point(262, 35);
|
|
537 | 537 |
this.radLabelFrReviewStatus.Name = "radLabelFrReviewStatus"; |
538 | 538 |
this.radLabelFrReviewStatus.Size = new System.Drawing.Size(59, 17); |
539 | 539 |
this.radLabelFrReviewStatus.TabIndex = 7; |
... | ... | |
545 | 545 |
this.radLabelToIsDiscussion.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
546 | 546 |
this.radLabelToIsDiscussion.Location = new System.Drawing.Point(60, 35); |
547 | 547 |
this.radLabelToIsDiscussion.Name = "radLabelToIsDiscussion"; |
548 |
this.radLabelToIsDiscussion.Size = new System.Drawing.Size(68, 17);
|
|
548 |
this.radLabelToIsDiscussion.Size = new System.Drawing.Size(79, 17);
|
|
549 | 549 |
this.radLabelToIsDiscussion.TabIndex = 7; |
550 | 550 |
this.radLabelToIsDiscussion.Text = "문의(DOF)"; |
551 | 551 |
// |
... | ... | |
555 | 555 |
this.radLabel9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
556 | 556 |
this.radLabel9.Location = new System.Drawing.Point(60, 93); |
557 | 557 |
this.radLabel9.Name = "radLabel9"; |
558 |
this.radLabel9.Size = new System.Drawing.Size(74, 17);
|
|
558 |
this.radLabel9.Size = new System.Drawing.Size(79, 17);
|
|
559 | 559 |
this.radLabel9.TabIndex = 8; |
560 | 560 |
this.radLabel9.Text = "도프텍결과"; |
561 | 561 |
// |
... | ... | |
563 | 563 |
// |
564 | 564 |
this.radLabelAVEVAStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
565 | 565 |
this.radLabelAVEVAStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
566 |
this.radLabelAVEVAStatus.Location = new System.Drawing.Point(263, 64);
|
|
566 |
this.radLabelAVEVAStatus.Location = new System.Drawing.Point(262, 64);
|
|
567 | 567 |
this.radLabelAVEVAStatus.Name = "radLabelAVEVAStatus"; |
568 | 568 |
this.radLabelAVEVAStatus.Size = new System.Drawing.Size(86, 17); |
569 | 569 |
this.radLabelAVEVAStatus.TabIndex = 8; |
... | ... | |
573 | 573 |
// |
574 | 574 |
this.radLabelIsID2Work.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
575 | 575 |
this.radLabelIsID2Work.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
576 |
this.radLabelIsID2Work.Location = new System.Drawing.Point(466, 35);
|
|
576 |
this.radLabelIsID2Work.Location = new System.Drawing.Point(464, 35);
|
|
577 | 577 |
this.radLabelIsID2Work.Name = "radLabelIsID2Work"; |
578 | 578 |
this.radLabelIsID2Work.Size = new System.Drawing.Size(80, 17); |
579 | 579 |
this.radLabelIsID2Work.TabIndex = 6; |
... | ... | |
583 | 583 |
// |
584 | 584 |
this.radLabelJobLevel.Anchor = System.Windows.Forms.AnchorStyles.Left; |
585 | 585 |
this.radLabelJobLevel.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
586 |
this.radLabelJobLevel.Location = new System.Drawing.Point(466, 6);
|
|
586 |
this.radLabelJobLevel.Location = new System.Drawing.Point(464, 6);
|
|
587 | 587 |
this.radLabelJobLevel.Name = "radLabelJobLevel"; |
588 | 588 |
this.radLabelJobLevel.Size = new System.Drawing.Size(47, 17); |
589 | 589 |
this.radLabelJobLevel.TabIndex = 7; |
... | ... | |
634 | 634 |
this.radButtonSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom))); |
635 | 635 |
this.radButtonSearch.Cursor = System.Windows.Forms.Cursors.Hand; |
636 | 636 |
this.radButtonSearch.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
637 |
this.radButtonSearch.Location = new System.Drawing.Point(880, 4);
|
|
637 |
this.radButtonSearch.Location = new System.Drawing.Point(878, 4);
|
|
638 | 638 |
this.radButtonSearch.Name = "radButtonSearch"; |
639 | 639 |
this.tableLayoutPanelCondition.SetRowSpan(this.radButtonSearch, 5); |
640 | 640 |
this.radButtonSearch.Size = new System.Drawing.Size(54, 136); |
... | ... | |
648 | 648 |
this.radDropDownListProject.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
649 | 649 |
this.radDropDownListProject.Location = new System.Drawing.Point(146, 5); |
650 | 650 |
this.radDropDownListProject.Name = "radDropDownListProject"; |
651 |
this.radDropDownListProject.Size = new System.Drawing.Size(110, 20);
|
|
651 |
this.radDropDownListProject.Size = new System.Drawing.Size(109, 20);
|
|
652 | 652 |
this.radDropDownListProject.TabIndex = 7; |
653 | 653 |
// |
654 | 654 |
// radLabelDocumentNo |
655 | 655 |
// |
656 | 656 |
this.radLabelDocumentNo.Anchor = System.Windows.Forms.AnchorStyles.Left; |
657 | 657 |
this.radLabelDocumentNo.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
658 |
this.radLabelDocumentNo.Location = new System.Drawing.Point(669, 6);
|
|
658 |
this.radLabelDocumentNo.Location = new System.Drawing.Point(666, 6);
|
|
659 | 659 |
this.radLabelDocumentNo.Name = "radLabelDocumentNo"; |
660 | 660 |
this.radLabelDocumentNo.Size = new System.Drawing.Size(49, 17); |
661 | 661 |
this.radLabelDocumentNo.TabIndex = 6; |
... | ... | |
664 | 664 |
// radTextBoxDocumentNo |
665 | 665 |
// |
666 | 666 |
this.radTextBoxDocumentNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
667 |
this.radTextBoxDocumentNo.Location = new System.Drawing.Point(755, 5);
|
|
667 |
this.radTextBoxDocumentNo.Location = new System.Drawing.Point(752, 5);
|
|
668 | 668 |
this.radTextBoxDocumentNo.Name = "radTextBoxDocumentNo"; |
669 |
this.radTextBoxDocumentNo.Size = new System.Drawing.Size(110, 20);
|
|
669 |
this.radTextBoxDocumentNo.Size = new System.Drawing.Size(109, 20);
|
|
670 | 670 |
this.radTextBoxDocumentNo.TabIndex = 8; |
671 | 671 |
// |
672 | 672 |
// radLabelPersonInCharge |
673 | 673 |
// |
674 | 674 |
this.radLabelPersonInCharge.Anchor = System.Windows.Forms.AnchorStyles.Left; |
675 | 675 |
this.radLabelPersonInCharge.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
676 |
this.radLabelPersonInCharge.Location = new System.Drawing.Point(263, 6);
|
|
676 |
this.radLabelPersonInCharge.Location = new System.Drawing.Point(262, 6);
|
|
677 | 677 |
this.radLabelPersonInCharge.Name = "radLabelPersonInCharge"; |
678 | 678 |
this.radLabelPersonInCharge.Size = new System.Drawing.Size(47, 17); |
679 | 679 |
this.radLabelPersonInCharge.TabIndex = 6; |
... | ... | |
684 | 684 |
this.radDropDownListPersonInCharge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
685 | 685 |
this.radDropDownListPersonInCharge.DropDownAnimationEnabled = true; |
686 | 686 |
this.radDropDownListPersonInCharge.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
687 |
this.radDropDownListPersonInCharge.Location = new System.Drawing.Point(349, 5);
|
|
687 |
this.radDropDownListPersonInCharge.Location = new System.Drawing.Point(348, 5);
|
|
688 | 688 |
this.radDropDownListPersonInCharge.Name = "radDropDownListPersonInCharge"; |
689 |
this.radDropDownListPersonInCharge.Size = new System.Drawing.Size(110, 20);
|
|
689 |
this.radDropDownListPersonInCharge.Size = new System.Drawing.Size(109, 20);
|
|
690 | 690 |
this.radDropDownListPersonInCharge.TabIndex = 9; |
691 | 691 |
// |
692 | 692 |
// radLabel1 |
... | ... | |
704 | 704 |
this.radDropDownListJobLevel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
705 | 705 |
this.radDropDownListJobLevel.DropDownAnimationEnabled = true; |
706 | 706 |
this.radDropDownListJobLevel.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
707 |
this.radDropDownListJobLevel.Location = new System.Drawing.Point(552, 5);
|
|
707 |
this.radDropDownListJobLevel.Location = new System.Drawing.Point(550, 5);
|
|
708 | 708 |
this.radDropDownListJobLevel.Name = "radDropDownListJobLevel"; |
709 |
this.radDropDownListJobLevel.Size = new System.Drawing.Size(110, 20);
|
|
709 |
this.radDropDownListJobLevel.Size = new System.Drawing.Size(109, 20);
|
|
710 | 710 |
this.radDropDownListJobLevel.TabIndex = 11; |
711 | 711 |
// |
712 | 712 |
// radLabelID2Status |
... | ... | |
723 | 723 |
// |
724 | 724 |
this.radLabel10.Anchor = System.Windows.Forms.AnchorStyles.Left; |
725 | 725 |
this.radLabel10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
726 |
this.radLabel10.Location = new System.Drawing.Point(263, 93);
|
|
726 |
this.radLabel10.Location = new System.Drawing.Point(262, 93);
|
|
727 | 727 |
this.radLabel10.Name = "radLabel10"; |
728 | 728 |
this.radLabel10.Size = new System.Drawing.Size(61, 17); |
729 | 729 |
this.radLabel10.TabIndex = 9; |
... | ... | |
734 | 734 |
this.radDropDownListIsID2Work.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
735 | 735 |
this.radDropDownListIsID2Work.DropDownAnimationEnabled = true; |
736 | 736 |
this.radDropDownListIsID2Work.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
737 |
this.radDropDownListIsID2Work.Location = new System.Drawing.Point(552, 34);
|
|
737 |
this.radDropDownListIsID2Work.Location = new System.Drawing.Point(550, 34);
|
|
738 | 738 |
this.radDropDownListIsID2Work.Name = "radDropDownListIsID2Work"; |
739 |
this.radDropDownListIsID2Work.Size = new System.Drawing.Size(110, 20);
|
|
739 |
this.radDropDownListIsID2Work.Size = new System.Drawing.Size(109, 20);
|
|
740 | 740 |
this.radDropDownListIsID2Work.TabIndex = 12; |
741 | 741 |
// |
742 | 742 |
// radDropDownListID2Status |
... | ... | |
746 | 746 |
this.radDropDownListID2Status.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
747 | 747 |
this.radDropDownListID2Status.Location = new System.Drawing.Point(146, 63); |
748 | 748 |
this.radDropDownListID2Status.Name = "radDropDownListID2Status"; |
749 |
this.radDropDownListID2Status.Size = new System.Drawing.Size(110, 20);
|
|
749 |
this.radDropDownListID2Status.Size = new System.Drawing.Size(109, 20);
|
|
750 | 750 |
this.radDropDownListID2Status.TabIndex = 13; |
751 | 751 |
// |
752 | 752 |
// radDropDownListAVEVAStatus |
... | ... | |
754 | 754 |
this.radDropDownListAVEVAStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
755 | 755 |
this.radDropDownListAVEVAStatus.DropDownAnimationEnabled = true; |
756 | 756 |
this.radDropDownListAVEVAStatus.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
757 |
this.radDropDownListAVEVAStatus.Location = new System.Drawing.Point(349, 63);
|
|
757 |
this.radDropDownListAVEVAStatus.Location = new System.Drawing.Point(348, 63);
|
|
758 | 758 |
this.radDropDownListAVEVAStatus.Name = "radDropDownListAVEVAStatus"; |
759 |
this.radDropDownListAVEVAStatus.Size = new System.Drawing.Size(110, 20);
|
|
759 |
this.radDropDownListAVEVAStatus.Size = new System.Drawing.Size(109, 20);
|
|
760 | 760 |
this.radDropDownListAVEVAStatus.TabIndex = 14; |
761 | 761 |
// |
762 | 762 |
// radDropDownListProdIsResult |
... | ... | |
766 | 766 |
this.radDropDownListProdIsResult.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
767 | 767 |
this.radDropDownListProdIsResult.Location = new System.Drawing.Point(146, 92); |
768 | 768 |
this.radDropDownListProdIsResult.Name = "radDropDownListProdIsResult"; |
769 |
this.radDropDownListProdIsResult.Size = new System.Drawing.Size(110, 20);
|
|
769 |
this.radDropDownListProdIsResult.Size = new System.Drawing.Size(109, 20);
|
|
770 | 770 |
this.radDropDownListProdIsResult.TabIndex = 15; |
771 | 771 |
// |
772 | 772 |
// radDropDownListClientIsResult |
... | ... | |
774 | 774 |
this.radDropDownListClientIsResult.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
775 | 775 |
this.radDropDownListClientIsResult.DropDownAnimationEnabled = true; |
776 | 776 |
this.radDropDownListClientIsResult.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
777 |
this.radDropDownListClientIsResult.Location = new System.Drawing.Point(349, 92);
|
|
777 |
this.radDropDownListClientIsResult.Location = new System.Drawing.Point(348, 92);
|
|
778 | 778 |
this.radDropDownListClientIsResult.Name = "radDropDownListClientIsResult"; |
779 |
this.radDropDownListClientIsResult.Size = new System.Drawing.Size(110, 20);
|
|
779 |
this.radDropDownListClientIsResult.Size = new System.Drawing.Size(109, 20);
|
|
780 | 780 |
this.radDropDownListClientIsResult.TabIndex = 16; |
781 | 781 |
// |
782 | 782 |
// radLabel6 |
... | ... | |
793 | 793 |
// |
794 | 794 |
this.radLabel7.Anchor = System.Windows.Forms.AnchorStyles.Left; |
795 | 795 |
this.radLabel7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
796 |
this.radLabel7.Location = new System.Drawing.Point(263, 121);
|
|
796 |
this.radLabel7.Location = new System.Drawing.Point(262, 121);
|
|
797 | 797 |
this.radLabel7.Name = "radLabel7"; |
798 | 798 |
this.radLabel7.Size = new System.Drawing.Size(72, 17); |
799 | 799 |
this.radLabel7.TabIndex = 12; |
... | ... | |
805 | 805 |
this.radLabel5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
806 | 806 |
this.radLabel5.Location = new System.Drawing.Point(60, 121); |
807 | 807 |
this.radLabel5.Name = "radLabel5"; |
808 |
this.radLabel5.Size = new System.Drawing.Size(55, 17);
|
|
808 |
this.radLabel5.Size = new System.Drawing.Size(79, 17);
|
|
809 | 809 |
this.radLabel5.TabIndex = 11; |
810 | 810 |
this.radLabel5.Text = "Gateway"; |
811 | 811 |
// |
... | ... | |
816 | 816 |
this.radDropDownListGateway.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
817 | 817 |
this.radDropDownListGateway.Location = new System.Drawing.Point(146, 120); |
818 | 818 |
this.radDropDownListGateway.Name = "radDropDownListGateway"; |
819 |
this.radDropDownListGateway.Size = new System.Drawing.Size(110, 20);
|
|
819 |
this.radDropDownListGateway.Size = new System.Drawing.Size(109, 20);
|
|
820 | 820 |
this.radDropDownListGateway.TabIndex = 19; |
821 | 821 |
// |
822 | 822 |
// radDropDownListRegistration |
... | ... | |
824 | 824 |
this.radDropDownListRegistration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); |
825 | 825 |
this.radDropDownListRegistration.DropDownAnimationEnabled = true; |
826 | 826 |
this.radDropDownListRegistration.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList; |
827 |
this.radDropDownListRegistration.Location = new System.Drawing.Point(349, 120);
|
|
827 |
this.radDropDownListRegistration.Location = new System.Drawing.Point(348, 120);
|
|
828 | 828 |
this.radDropDownListRegistration.Name = "radDropDownListRegistration"; |
829 |
this.radDropDownListRegistration.Size = new System.Drawing.Size(110, 20);
|
|
829 |
this.radDropDownListRegistration.Size = new System.Drawing.Size(109, 20);
|
|
830 | 830 |
this.radDropDownListRegistration.TabIndex = 20; |
831 | 831 |
// |
832 | 832 |
// tableLayoutPanelGroup |
... | ... | |
859 | 859 |
this.radLabelGroupVIew.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
860 | 860 |
this.radLabelGroupVIew.Location = new System.Drawing.Point(4, 4); |
861 | 861 |
this.radLabelGroupVIew.Name = "radLabelGroupVIew"; |
862 |
this.radLabelGroupVIew.Size = new System.Drawing.Size(78, 17);
|
|
862 |
this.radLabelGroupVIew.Size = new System.Drawing.Size(78, 16);
|
|
863 | 863 |
this.radLabelGroupVIew.TabIndex = 3; |
864 | 864 |
this.radLabelGroupVIew.Text = "Group View :"; |
865 | 865 |
// |
... | ... | |
869 | 869 |
this.radCheckBox4.CheckState = System.Windows.Forms.CheckState.Checked; |
870 | 870 |
this.radCheckBox4.Location = new System.Drawing.Point(402, 4); |
871 | 871 |
this.radCheckBox4.Name = "radCheckBox4"; |
872 |
this.radCheckBox4.Size = new System.Drawing.Size(76, 18);
|
|
872 |
this.radCheckBox4.Size = new System.Drawing.Size(76, 16);
|
|
873 | 873 |
this.radCheckBox4.TabIndex = 2; |
874 | 874 |
this.radCheckBox4.Tag = "avevanet"; |
875 | 875 |
this.radCheckBox4.Text = "AVEVA Net"; |
... | ... | |
881 | 881 |
this.radCheckBox3.CheckState = System.Windows.Forms.CheckState.Checked; |
882 | 882 |
this.radCheckBox3.Location = new System.Drawing.Point(303, 4); |
883 | 883 |
this.radCheckBox3.Name = "radCheckBox3"; |
884 |
this.radCheckBox3.Size = new System.Drawing.Size(71, 18);
|
|
884 |
this.radCheckBox3.Size = new System.Drawing.Size(71, 16);
|
|
885 | 885 |
this.radCheckBox3.TabIndex = 1; |
886 | 886 |
this.radCheckBox3.Tag = "validation"; |
887 | 887 |
this.radCheckBox3.Text = "Validation"; |
... | ... | |
893 | 893 |
this.radCheckBox2.CheckState = System.Windows.Forms.CheckState.Checked; |
894 | 894 |
this.radCheckBox2.Location = new System.Drawing.Point(216, 4); |
895 | 895 |
this.radCheckBox2.Name = "radCheckBox2"; |
896 |
this.radCheckBox2.Size = new System.Drawing.Size(43, 18);
|
|
896 |
this.radCheckBox2.Size = new System.Drawing.Size(43, 16);
|
|
897 | 897 |
this.radCheckBox2.TabIndex = 1; |
898 | 898 |
this.radCheckBox2.Tag = "work"; |
899 | 899 |
this.radCheckBox2.Text = "작업"; |
... | ... | |
905 | 905 |
this.radCheckBox1.CheckState = System.Windows.Forms.CheckState.Checked; |
906 | 906 |
this.radCheckBox1.Location = new System.Drawing.Point(115, 4); |
907 | 907 |
this.radCheckBox1.Name = "radCheckBox1"; |
908 |
this.radCheckBox1.Size = new System.Drawing.Size(43, 18);
|
|
908 |
this.radCheckBox1.Size = new System.Drawing.Size(43, 16);
|
|
909 | 909 |
this.radCheckBox1.TabIndex = 0; |
910 | 910 |
this.radCheckBox1.Tag = "review"; |
911 | 911 |
this.radCheckBox1.Text = "검토"; |
... | ... | |
946 | 946 |
this.radGridViewDocuments.MasterTemplate.AllowColumnHeaderContextMenu = false; |
947 | 947 |
this.radGridViewDocuments.MasterTemplate.AutoGenerateColumns = false; |
948 | 948 |
this.radGridViewDocuments.MasterTemplate.ChildViewTabsPosition = Telerik.WinControls.UI.TabPositions.Bottom; |
949 |
gridViewCommandColumn11.EnableExpressionEditor = false; |
|
950 |
gridViewCommandColumn11.FieldName = "AutoCADLink"; |
|
951 |
gridViewCommandColumn11.HeaderText = "AutoCAD"; |
|
952 |
gridViewCommandColumn11.ImageLayout = System.Windows.Forms.ImageLayout.Center; |
|
953 |
gridViewCommandColumn11.Name = "AutoCADLink"; |
|
954 |
gridViewCommandColumn11.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
955 |
gridViewCommandColumn11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; |
|
956 |
gridViewCommandColumn11.Width = 70; |
|
957 |
gridViewCommandColumn12.EnableExpressionEditor = false; |
|
958 |
gridViewCommandColumn12.FieldName = "PDFLink"; |
|
959 |
gridViewCommandColumn12.HeaderText = "PDF"; |
|
960 |
gridViewCommandColumn12.ImageLayout = System.Windows.Forms.ImageLayout.Center; |
|
961 |
gridViewCommandColumn12.Name = "PDFLink"; |
|
962 |
gridViewCommandColumn12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; |
|
963 |
gridViewCommandColumn12.Width = 70; |
|
964 |
gridViewCommandColumn13.EnableExpressionEditor = false; |
|
965 |
gridViewCommandColumn13.FieldName = "MarkupLink"; |
|
966 |
gridViewCommandColumn13.HeaderText = "Markus"; |
|
967 |
gridViewCommandColumn13.ImageLayout = System.Windows.Forms.ImageLayout.Center; |
|
968 |
gridViewCommandColumn13.Name = "MarkupLink"; |
|
969 |
gridViewCommandColumn13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; |
|
970 |
gridViewCommandColumn13.Width = 70; |
|
971 |
gridViewCommandColumn14.EnableExpressionEditor = false; |
|
972 |
gridViewCommandColumn14.FieldName = "AVEVALink"; |
|
973 |
gridViewCommandColumn14.HeaderText = "AVEVA"; |
|
974 |
gridViewCommandColumn14.ImageLayout = System.Windows.Forms.ImageLayout.Center; |
|
975 |
gridViewCommandColumn14.Name = "AVEVALink"; |
|
976 |
gridViewCommandColumn14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; |
|
977 |
gridViewCommandColumn14.Width = 70; |
|
978 |
gridViewComboBoxColumn22.EnableExpressionEditor = false; |
|
979 |
gridViewComboBoxColumn22.FieldName = "RefProjectCode"; |
|
980 |
gridViewComboBoxColumn22.HeaderText = "Team"; |
|
981 |
gridViewComboBoxColumn22.Name = "RefProjectCode"; |
|
982 |
gridViewComboBoxColumn22.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
983 |
gridViewComboBoxColumn22.Width = 150; |
|
984 |
gridViewTextBoxColumn11.EnableExpressionEditor = false; |
|
985 |
gridViewTextBoxColumn11.FieldName = "DocumentNo"; |
|
986 |
gridViewTextBoxColumn11.HeaderText = "ID"; |
|
987 |
gridViewTextBoxColumn11.Name = "DocumentNo"; |
|
988 |
gridViewTextBoxColumn11.Width = 150; |
|
989 |
gridViewComboBoxColumn23.EnableExpressionEditor = false; |
|
990 |
gridViewComboBoxColumn23.FieldName = "PersonInCharge"; |
|
991 |
gridViewComboBoxColumn23.HeaderText = "담당자"; |
|
992 |
gridViewComboBoxColumn23.Name = "PersonInCharge"; |
|
993 |
gridViewComboBoxColumn23.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
994 |
gridViewComboBoxColumn23.Width = 100; |
|
995 |
gridViewComboBoxColumn24.FieldName = "Worker"; |
|
996 |
gridViewComboBoxColumn24.HeaderText = "작업자"; |
|
997 |
gridViewComboBoxColumn24.Name = "Worker"; |
|
998 |
gridViewComboBoxColumn24.ReadOnly = true; |
|
999 |
gridViewComboBoxColumn24.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1000 |
gridViewComboBoxColumn24.Width = 100; |
|
1001 |
gridViewComboBoxColumn25.EnableExpressionEditor = false; |
|
1002 |
gridViewComboBoxColumn25.FieldName = "JobLevel"; |
|
1003 |
gridViewComboBoxColumn25.HeaderText = "난이도"; |
|
1004 |
gridViewComboBoxColumn25.Name = "JobLevel"; |
|
1005 |
gridViewComboBoxColumn25.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1006 |
gridViewComboBoxColumn25.Width = 60; |
|
1007 |
gridViewComboBoxColumn26.EnableExpressionEditor = false; |
|
1008 |
gridViewComboBoxColumn26.FieldName = "IsTypical"; |
|
1009 |
gridViewComboBoxColumn26.HeaderText = "Typical"; |
|
1010 |
gridViewComboBoxColumn26.Name = "IsTypical"; |
|
1011 |
gridViewComboBoxColumn26.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1012 |
gridViewComboBoxColumn26.Width = 60; |
|
1013 |
gridViewTextBoxColumn12.EnableExpressionEditor = false; |
|
1014 |
gridViewTextBoxColumn12.FieldName = "RevisonNo"; |
|
1015 |
gridViewTextBoxColumn12.HeaderText = "Rev."; |
|
1016 |
gridViewTextBoxColumn12.Name = "RevisonNo"; |
|
1017 |
gridViewTextBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1018 |
gridViewComboBoxColumn27.EnableExpressionEditor = false; |
|
1019 |
gridViewComboBoxColumn27.FieldName = "ToIsDiscussion"; |
|
1020 |
gridViewComboBoxColumn27.HeaderText = "협의사항"; |
|
1021 |
gridViewComboBoxColumn27.Name = "ToIsDiscussion"; |
|
1022 |
gridViewComboBoxColumn27.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1023 |
gridViewComboBoxColumn27.Width = 80; |
|
1024 |
gridViewTextBoxColumn13.EnableExpressionEditor = false; |
|
1025 |
gridViewTextBoxColumn13.FieldName = "ToRemarks"; |
|
1026 |
gridViewTextBoxColumn13.HeaderText = "Brief"; |
|
1027 |
gridViewTextBoxColumn13.Multiline = true; |
|
1028 |
gridViewTextBoxColumn13.Name = "ToRemarks"; |
|
1029 |
gridViewTextBoxColumn13.Width = 150; |
|
1030 |
gridViewComboBoxColumn28.EnableExpressionEditor = false; |
|
1031 |
gridViewComboBoxColumn28.FieldName = "ToCreator"; |
|
1032 |
gridViewComboBoxColumn28.HeaderText = "작성자"; |
|
1033 |
gridViewComboBoxColumn28.Name = "ToCreator"; |
|
1034 |
gridViewComboBoxColumn28.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1035 |
gridViewComboBoxColumn28.Width = 100; |
|
1036 |
gridViewCommandColumn15.EnableExpressionEditor = false; |
|
1037 |
gridViewCommandColumn15.FieldName = "ToCapture"; |
|
1038 |
gridViewCommandColumn15.HeaderText = "캡쳐"; |
|
1039 |
gridViewCommandColumn15.Name = "ToCapture"; |
|
1040 |
gridViewCommandColumn15.Width = 70; |
|
1041 |
gridViewComboBoxColumn29.EnableExpressionEditor = false; |
|
1042 |
gridViewComboBoxColumn29.FieldName = "ToIsMarkup"; |
|
1043 |
gridViewComboBoxColumn29.HeaderText = "마크업여부"; |
|
1044 |
gridViewComboBoxColumn29.Name = "ToIsMarkup"; |
|
1045 |
gridViewComboBoxColumn29.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1046 |
gridViewComboBoxColumn29.Width = 80; |
|
1047 |
gridViewComboBoxColumn30.EnableExpressionEditor = false; |
|
1048 |
gridViewComboBoxColumn30.FieldName = "FrReviewStatus"; |
|
1049 |
gridViewComboBoxColumn30.HeaderText = "의견Status"; |
|
1050 |
gridViewComboBoxColumn30.Name = "FrReviewStatus"; |
|
1051 |
gridViewComboBoxColumn30.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1052 |
gridViewComboBoxColumn30.Width = 80; |
|
1053 |
gridViewTextBoxColumn14.EnableExpressionEditor = false; |
|
1054 |
gridViewTextBoxColumn14.FieldName = "FrRemarks"; |
|
1055 |
gridViewTextBoxColumn14.HeaderText = "Brief"; |
|
1056 |
gridViewTextBoxColumn14.Name = "FrRemarks"; |
|
1057 |
gridViewTextBoxColumn14.Width = 150; |
|
1058 |
gridViewComboBoxColumn31.EnableExpressionEditor = false; |
|
1059 |
gridViewComboBoxColumn31.FieldName = "FrCreator"; |
|
1060 |
gridViewComboBoxColumn31.HeaderText = "검토자"; |
|
1061 |
gridViewComboBoxColumn31.Name = "FrCreator"; |
|
1062 |
gridViewComboBoxColumn31.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1063 |
gridViewComboBoxColumn31.Width = 100; |
|
1064 |
gridViewCommandColumn16.EnableExpressionEditor = false; |
|
1065 |
gridViewCommandColumn16.FieldName = "FrCapture"; |
|
1066 |
gridViewCommandColumn16.HeaderText = "캡쳐"; |
|
1067 |
gridViewCommandColumn16.Name = "FrCapture"; |
|
1068 |
gridViewCommandColumn16.Width = 70; |
|
1069 |
gridViewComboBoxColumn32.EnableExpressionEditor = false; |
|
1070 |
gridViewComboBoxColumn32.FieldName = "FrIsMarkup"; |
|
1071 |
gridViewComboBoxColumn32.HeaderText = "마크업여부"; |
|
1072 |
gridViewComboBoxColumn32.Name = "FrIsMarkup"; |
|
1073 |
gridViewComboBoxColumn32.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1074 |
gridViewComboBoxColumn32.Width = 80; |
|
1075 |
gridViewComboBoxColumn33.EnableExpressionEditor = false; |
|
1076 |
gridViewComboBoxColumn33.FieldName = "IsID2Work"; |
|
1077 |
gridViewComboBoxColumn33.HeaderText = "ID2 작업가능"; |
|
1078 |
gridViewComboBoxColumn33.Name = "IsID2Work"; |
|
1079 |
gridViewComboBoxColumn33.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1080 |
gridViewComboBoxColumn33.Width = 90; |
|
1081 |
gridViewCommandColumn17.EnableExpressionEditor = false; |
|
1082 |
gridViewCommandColumn17.FieldName = "ID2Connection"; |
|
1083 |
gridViewCommandColumn17.HeaderText = "연결"; |
|
1084 |
gridViewCommandColumn17.Name = "ID2Connection"; |
|
1085 |
gridViewCommandColumn17.Width = 70; |
|
1086 |
gridViewDateTimeColumn5.EnableExpressionEditor = false; |
|
1087 |
gridViewDateTimeColumn5.FieldName = "ID2StartDate"; |
|
1088 |
gridViewDateTimeColumn5.Format = System.Windows.Forms.DateTimePickerFormat.Custom; |
|
1089 |
gridViewDateTimeColumn5.FormatString = "{0: yyyy/MM/dd HH:mm:ss}"; |
|
1090 |
gridViewDateTimeColumn5.HeaderText = "시작일"; |
|
1091 |
gridViewDateTimeColumn5.Name = "ID2StartDate"; |
|
1092 |
gridViewDateTimeColumn5.ReadOnly = true; |
|
1093 |
gridViewDateTimeColumn5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1094 |
gridViewDateTimeColumn5.Width = 120; |
|
1095 |
gridViewDateTimeColumn6.EnableExpressionEditor = false; |
|
1096 |
gridViewDateTimeColumn6.FieldName = "ID2EndDate"; |
|
1097 |
gridViewDateTimeColumn6.Format = System.Windows.Forms.DateTimePickerFormat.Custom; |
|
1098 |
gridViewDateTimeColumn6.FormatString = "{0: yyyy/MM/dd HH:mm:ss}"; |
|
1099 |
gridViewDateTimeColumn6.HeaderText = "완료일"; |
|
1100 |
gridViewDateTimeColumn6.Name = "ID2EndDate"; |
|
1101 |
gridViewDateTimeColumn6.ReadOnly = true; |
|
1102 |
gridViewDateTimeColumn6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1103 |
gridViewDateTimeColumn6.Width = 120; |
|
1104 |
gridViewTextBoxColumn15.EnableExpressionEditor = false; |
|
1105 |
gridViewTextBoxColumn15.FieldName = "ID2JobTimetoString"; |
|
1106 |
gridViewTextBoxColumn15.HeaderText = "작업시간"; |
|
1107 |
gridViewTextBoxColumn15.Name = "ID2JobTime"; |
|
1108 |
gridViewTextBoxColumn15.ReadOnly = true; |
|
1109 |
gridViewTextBoxColumn15.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1110 |
gridViewTextBoxColumn15.Width = 80; |
|
1111 |
gridViewComboBoxColumn34.EnableExpressionEditor = false; |
|
1112 |
gridViewComboBoxColumn34.FieldName = "ID2Status"; |
|
1113 |
gridViewComboBoxColumn34.HeaderText = "Status"; |
|
1114 |
gridViewComboBoxColumn34.Name = "ID2Status"; |
|
1115 |
gridViewComboBoxColumn34.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1116 |
gridViewComboBoxColumn34.Width = 70; |
|
1117 |
gridViewTextBoxColumn16.EnableExpressionEditor = false; |
|
1118 |
gridViewTextBoxColumn16.FieldName = "ID2Issues"; |
|
1119 |
gridViewTextBoxColumn16.HeaderText = "이슈사항"; |
|
1120 |
gridViewTextBoxColumn16.Name = "ID2Issues"; |
|
1121 |
gridViewTextBoxColumn16.Width = 150; |
|
1122 |
gridViewCommandColumn18.EnableExpressionEditor = false; |
|
1123 |
gridViewCommandColumn18.FieldName = "AVEVAConnection"; |
|
1124 |
gridViewCommandColumn18.HeaderText = "연결"; |
|
1125 |
gridViewCommandColumn18.Name = "AVEVAConnection"; |
|
1126 |
gridViewCommandColumn18.Width = 70; |
|
1127 |
gridViewDateTimeColumn7.EnableExpressionEditor = false; |
|
1128 |
gridViewDateTimeColumn7.FieldName = "AVEVAConvertDate"; |
|
1129 |
gridViewDateTimeColumn7.Format = System.Windows.Forms.DateTimePickerFormat.Custom; |
|
1130 |
gridViewDateTimeColumn7.FormatString = "{0: yyyy/MM/dd}"; |
|
1131 |
gridViewDateTimeColumn7.HeaderText = "변환일"; |
|
1132 |
gridViewDateTimeColumn7.Name = "AVEVAConvertDate"; |
|
1133 |
gridViewDateTimeColumn7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1134 |
gridViewDateTimeColumn7.Width = 70; |
|
1135 |
gridViewDateTimeColumn8.EnableExpressionEditor = false; |
|
1136 |
gridViewDateTimeColumn8.FieldName = "AVEVAReviewDate"; |
|
1137 |
gridViewDateTimeColumn8.Format = System.Windows.Forms.DateTimePickerFormat.Custom; |
|
1138 |
gridViewDateTimeColumn8.FormatString = "{0: yyyy/MM/dd}"; |
|
1139 |
gridViewDateTimeColumn8.HeaderText = "검토일"; |
|
1140 |
gridViewDateTimeColumn8.Name = "AVEVAReviewDate"; |
|
1141 |
gridViewDateTimeColumn8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1142 |
gridViewDateTimeColumn8.Width = 70; |
|
1143 |
gridViewComboBoxColumn35.EnableExpressionEditor = false; |
|
1144 |
gridViewComboBoxColumn35.FieldName = "AVEVAStatus"; |
|
1145 |
gridViewComboBoxColumn35.HeaderText = "Status"; |
|
1146 |
gridViewComboBoxColumn35.Name = "AVEVAStatus"; |
|
1147 |
gridViewComboBoxColumn35.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1148 |
gridViewComboBoxColumn35.Width = 70; |
|
1149 |
gridViewTextBoxColumn17.EnableExpressionEditor = false; |
|
1150 |
gridViewTextBoxColumn17.FieldName = "AVEVAIssues"; |
|
1151 |
gridViewTextBoxColumn17.HeaderText = "이슈사항"; |
|
1152 |
gridViewTextBoxColumn17.Name = "AVEVAIssues"; |
|
1153 |
gridViewTextBoxColumn17.Width = 150; |
|
1154 |
gridViewCommandColumn19.EnableExpressionEditor = false; |
|
1155 |
gridViewCommandColumn19.FieldName = "ReviewFileName"; |
|
1156 |
gridViewCommandColumn19.HeaderText = "PDF"; |
|
1157 |
gridViewCommandColumn19.Name = "ReviewFileName"; |
|
1158 |
gridViewCommandColumn19.Width = 70; |
|
1159 |
gridViewCommandColumn20.EnableExpressionEditor = false; |
|
1160 |
gridViewCommandColumn20.HeaderText = "시스템"; |
|
1161 |
gridViewCommandColumn20.Name = "SystemLink"; |
|
1162 |
gridViewCommandColumn20.Width = 70; |
|
1163 |
gridViewComboBoxColumn36.EnableExpressionEditor = false; |
|
1164 |
gridViewComboBoxColumn36.FieldName = "ProdReviewer"; |
|
1165 |
gridViewComboBoxColumn36.HeaderText = "검토자"; |
|
1166 |
gridViewComboBoxColumn36.Name = "ProdReviewer"; |
|
1167 |
gridViewComboBoxColumn36.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1168 |
gridViewComboBoxColumn36.Width = 100; |
|
1169 |
gridViewComboBoxColumn37.EnableExpressionEditor = false; |
|
1170 |
gridViewComboBoxColumn37.FieldName = "ProdIsResult"; |
|
1171 |
gridViewComboBoxColumn37.HeaderText = "결과"; |
|
1172 |
gridViewComboBoxColumn37.Name = "ProdIsResult"; |
|
1173 |
gridViewComboBoxColumn37.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1174 |
gridViewComboBoxColumn37.Width = 70; |
|
1175 |
gridViewTextBoxColumn18.EnableExpressionEditor = false; |
|
1176 |
gridViewTextBoxColumn18.FieldName = "ProdRemarks"; |
|
1177 |
gridViewTextBoxColumn18.HeaderText = "비고"; |
|
1178 |
gridViewTextBoxColumn18.Name = "ProdRemarks"; |
|
1179 |
gridViewTextBoxColumn18.Width = 150; |
|
1180 |
gridViewComboBoxColumn38.EnableExpressionEditor = false; |
|
1181 |
gridViewComboBoxColumn38.FieldName = "ClientReviewer"; |
|
1182 |
gridViewComboBoxColumn38.HeaderText = "검토자"; |
|
1183 |
gridViewComboBoxColumn38.Name = "ClientReviewer"; |
|
1184 |
gridViewComboBoxColumn38.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1185 |
gridViewComboBoxColumn38.Width = 100; |
|
1186 |
gridViewComboBoxColumn39.EnableExpressionEditor = false; |
|
1187 |
gridViewComboBoxColumn39.FieldName = "ClientIsResult"; |
|
1188 |
gridViewComboBoxColumn39.HeaderText = "결과"; |
|
1189 |
gridViewComboBoxColumn39.Name = "ClientIsResult"; |
|
1190 |
gridViewComboBoxColumn39.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1191 |
gridViewComboBoxColumn39.Width = 70; |
|
1192 |
gridViewTextBoxColumn19.EnableExpressionEditor = false; |
|
1193 |
gridViewTextBoxColumn19.FieldName = "ClientRemarks"; |
|
1194 |
gridViewTextBoxColumn19.HeaderText = "비고"; |
|
1195 |
gridViewTextBoxColumn19.Name = "ClientRemarks"; |
|
1196 |
gridViewTextBoxColumn19.Width = 150; |
|
1197 |
gridViewComboBoxColumn40.EnableExpressionEditor = false; |
|
1198 |
gridViewComboBoxColumn40.FieldName = "DTIsGateWay"; |
|
1199 |
gridViewComboBoxColumn40.HeaderText = "GateWay"; |
|
1200 |
gridViewComboBoxColumn40.Name = "DTIsGateWay"; |
|
1201 |
gridViewComboBoxColumn40.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1202 |
gridViewComboBoxColumn40.Width = 80; |
|
1203 |
gridViewComboBoxColumn41.EnableExpressionEditor = false; |
|
1204 |
gridViewComboBoxColumn41.FieldName = "DTIsImport"; |
|
1205 |
gridViewComboBoxColumn41.HeaderText = "Import 성공여부"; |
|
1206 |
gridViewComboBoxColumn41.Name = "DTIsImport"; |
|
1207 |
gridViewComboBoxColumn41.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1208 |
gridViewComboBoxColumn41.Width = 80; |
|
1209 |
gridViewComboBoxColumn42.EnableExpressionEditor = false; |
|
1210 |
gridViewComboBoxColumn42.FieldName = "DTIsRegSystem"; |
|
1211 |
gridViewComboBoxColumn42.HeaderText = "시스템등록"; |
|
1212 |
gridViewComboBoxColumn42.Name = "DTIsRegSystem"; |
|
1213 |
gridViewComboBoxColumn42.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
1214 |
gridViewComboBoxColumn42.Width = 80; |
|
1215 |
gridViewTextBoxColumn20.EnableExpressionEditor = false; |
|
1216 |
gridViewTextBoxColumn20.FieldName = "DTRemarks"; |
|
1217 |
gridViewTextBoxColumn20.HeaderText = "비고"; |
|
1218 |
gridViewTextBoxColumn20.Name = "DTRemarks"; |
|
1219 |
gridViewTextBoxColumn20.Width = 150; |
|
949 |
gridViewCommandColumn1.EnableExpressionEditor = false; |
|
950 |
gridViewCommandColumn1.FieldName = "AutoCADLink"; |
|
951 |
gridViewCommandColumn1.HeaderText = "AutoCAD"; |
|
952 |
gridViewCommandColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Center; |
|
953 |
gridViewCommandColumn1.Name = "AutoCADLink"; |
|
954 |
gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; |
|
955 |
gridViewCommandColumn1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; |
|
956 |
gridViewCommandColumn1.Width = 70; |
|
957 |
gridViewCommandColumn2.EnableExpressionEditor = false; |
|
958 |
gridViewCommandColumn2.FieldName = "PDFLink"; |
|
959 |
gridViewCommandColumn2.HeaderText = "PDF"; |
|
960 |
gridViewCommandColumn2.ImageLayout = System.Windows.Forms.ImageLayout.Center; |
|
961 |
gridViewCommandColumn2.Name = "PDFLink"; |
|
962 |
gridViewCommandColumn2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; |
|
963 |
gridViewCommandColumn2.Width = 70; |
|
964 |
gridViewCommandColumn3.EnableExpressionEditor = false; |
|
965 |
gridViewCommandColumn3.FieldName = "MarkupLink"; |
|
966 |
gridViewCommandColumn3.HeaderText = "Markus"; |
|
967 |
gridViewCommandColumn3.ImageLayout = System.Windows.Forms.ImageLayout.Center; |
|
968 |
gridViewCommandColumn3.Name = "MarkupLink"; |
|
969 |
gridViewCommandColumn3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; |
|
970 |
gridViewCommandColumn3.Width = 70; |
|
971 |
gridViewCommandColumn4.EnableExpressionEditor = false; |
|
972 |
gridViewCommandColumn4.FieldName = "AVEVALink"; |
|
973 |
gridViewCommandColumn4.HeaderText = "AVEVA"; |
|
974 |
gridViewCommandColumn4.ImageLayout = System.Windows.Forms.ImageLayout.Center; |
|
975 |
gridViewCommandColumn4.Name = "AVEVALink"; |
|
976 |
gridViewCommandColumn4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; |
|
977 |
gridViewCommandColumn4.Width = 70; |
내보내기 Unified diff