hytos / DTI_PID / PDF_TO_IMAGE / ConvertImage.Designer.cs @ 1e44f0fe
이력 | 보기 | 이력해설 | 다운로드 (8.28 KB)
1 | 4601d8de | Gyusu | namespace PDF_TO_IMAGE |
---|---|---|---|
2 | { |
||
3 | partial class ConvertImage |
||
4 | { |
||
5 | /// <summary> |
||
6 | /// 필수 디자이너 변수입니다. |
||
7 | /// </summary> |
||
8 | private System.ComponentModel.IContainer components = null; |
||
9 | |||
10 | /// <summary> |
||
11 | /// 사용 중인 모든 리소스를 정리합니다. |
||
12 | /// </summary> |
||
13 | /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param> |
||
14 | protected override void Dispose(bool disposing) |
||
15 | { |
||
16 | if (disposing && (components != null)) |
||
17 | { |
||
18 | components.Dispose(); |
||
19 | } |
||
20 | base.Dispose(disposing); |
||
21 | } |
||
22 | |||
23 | #region Windows Form 디자이너에서 생성한 코드 |
||
24 | |||
25 | /// <summary> |
||
26 | /// 디자이너 지원에 필요한 메서드입니다. |
||
27 | /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. |
||
28 | /// </summary> |
||
29 | private void InitializeComponent() |
||
30 | { |
||
31 | this.Txt_PDFPath = new System.Windows.Forms.TextBox(); |
||
32 | this.label1 = new System.Windows.Forms.Label(); |
||
33 | this.Btn_LoadPDF = new System.Windows.Forms.Button(); |
||
34 | this.Btn_Convert = new System.Windows.Forms.Button(); |
||
35 | this.label2 = new System.Windows.Forms.Label(); |
||
36 | this.Combo_DPI = new System.Windows.Forms.ComboBox(); |
||
37 | this.label3 = new System.Windows.Forms.Label(); |
||
38 | this.label4 = new System.Windows.Forms.Label(); |
||
39 | this.label5 = new System.Windows.Forms.Label(); |
||
40 | this.Txt_Height = new System.Windows.Forms.TextBox(); |
||
41 | this.Txt_Width = new System.Windows.Forms.TextBox(); |
||
42 | 76f465d0 | Gyusu | this.Chk_DPI = new System.Windows.Forms.CheckBox(); |
43 | 4601d8de | Gyusu | this.SuspendLayout(); |
44 | // |
||
45 | // Txt_PDFPath |
||
46 | // |
||
47 | this.Txt_PDFPath.Location = new System.Drawing.Point(75, 40); |
||
48 | this.Txt_PDFPath.Name = "Txt_PDFPath"; |
||
49 | this.Txt_PDFPath.Size = new System.Drawing.Size(498, 21); |
||
50 | this.Txt_PDFPath.TabIndex = 0; |
||
51 | // |
||
52 | // label1 |
||
53 | // |
||
54 | this.label1.AutoSize = true; |
||
55 | this.label1.Location = new System.Drawing.Point(12, 43); |
||
56 | this.label1.Name = "label1"; |
||
57 | this.label1.Size = new System.Drawing.Size(9, 12); |
||
58 | this.label1.TabIndex = 1; |
||
59 | this.label1.Text = " "; |
||
60 | // |
||
61 | // Btn_LoadPDF |
||
62 | // |
||
63 | this.Btn_LoadPDF.Location = new System.Drawing.Point(579, 39); |
||
64 | this.Btn_LoadPDF.Name = "Btn_LoadPDF"; |
||
65 | this.Btn_LoadPDF.Size = new System.Drawing.Size(35, 21); |
||
66 | this.Btn_LoadPDF.TabIndex = 2; |
||
67 | this.Btn_LoadPDF.Text = "..."; |
||
68 | this.Btn_LoadPDF.UseVisualStyleBackColor = true; |
||
69 | this.Btn_LoadPDF.Click += new System.EventHandler(this.Btn_LoadPDF_Click); |
||
70 | // |
||
71 | // Btn_Convert |
||
72 | // |
||
73 | this.Btn_Convert.BackColor = System.Drawing.Color.Transparent; |
||
74 | this.Btn_Convert.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); |
||
75 | this.Btn_Convert.Location = new System.Drawing.Point(620, 39); |
||
76 | this.Btn_Convert.Name = "Btn_Convert"; |
||
77 | this.Btn_Convert.Size = new System.Drawing.Size(63, 21); |
||
78 | this.Btn_Convert.TabIndex = 3; |
||
79 | this.Btn_Convert.Text = "Convert"; |
||
80 | this.Btn_Convert.UseVisualStyleBackColor = false; |
||
81 | this.Btn_Convert.Click += new System.EventHandler(this.Btn_Convert_Click); |
||
82 | // |
||
83 | // label2 |
||
84 | // |
||
85 | this.label2.AutoSize = true; |
||
86 | this.label2.Location = new System.Drawing.Point(12, 14); |
||
87 | this.label2.Name = "label2"; |
||
88 | this.label2.Size = new System.Drawing.Size(23, 12); |
||
89 | this.label2.TabIndex = 4; |
||
90 | this.label2.Text = "Dpi"; |
||
91 | // |
||
92 | // Combo_DPI |
||
93 | // |
||
94 | this.Combo_DPI.FormattingEnabled = true; |
||
95 | this.Combo_DPI.Items.AddRange(new object[] { |
||
96 | "150", |
||
97 | "300", |
||
98 | "600", |
||
99 | "750", |
||
100 | "900", |
||
101 | "1200", |
||
102 | "1500", |
||
103 | "1800"}); |
||
104 | this.Combo_DPI.Location = new System.Drawing.Point(75, 11); |
||
105 | this.Combo_DPI.MaxDropDownItems = 12; |
||
106 | this.Combo_DPI.Name = "Combo_DPI"; |
||
107 | this.Combo_DPI.Size = new System.Drawing.Size(83, 20); |
||
108 | this.Combo_DPI.TabIndex = 5; |
||
109 | // |
||
110 | // label3 |
||
111 | // |
||
112 | this.label3.AutoSize = true; |
||
113 | this.label3.Location = new System.Drawing.Point(12, 43); |
||
114 | this.label3.Name = "label3"; |
||
115 | this.label3.Size = new System.Drawing.Size(57, 12); |
||
116 | this.label3.TabIndex = 6; |
||
117 | this.label3.Text = "PDF Path"; |
||
118 | // |
||
119 | // label4 |
||
120 | // |
||
121 | this.label4.AutoSize = true; |
||
122 | this.label4.Location = new System.Drawing.Point(183, 14); |
||
123 | this.label4.Name = "label4"; |
||
124 | this.label4.Size = new System.Drawing.Size(40, 12); |
||
125 | this.label4.TabIndex = 7; |
||
126 | this.label4.Text = "Height"; |
||
127 | // |
||
128 | // label5 |
||
129 | // |
||
130 | this.label5.AutoSize = true; |
||
131 | this.label5.Location = new System.Drawing.Point(324, 14); |
||
132 | this.label5.Name = "label5"; |
||
133 | this.label5.Size = new System.Drawing.Size(35, 12); |
||
134 | this.label5.TabIndex = 8; |
||
135 | this.label5.Text = "Width"; |
||
136 | // |
||
137 | // Txt_Height |
||
138 | // |
||
139 | this.Txt_Height.Location = new System.Drawing.Point(229, 10); |
||
140 | this.Txt_Height.Name = "Txt_Height"; |
||
141 | this.Txt_Height.Size = new System.Drawing.Size(72, 21); |
||
142 | this.Txt_Height.TabIndex = 9; |
||
143 | // |
||
144 | // Txt_Width |
||
145 | // |
||
146 | this.Txt_Width.Location = new System.Drawing.Point(365, 10); |
||
147 | this.Txt_Width.Name = "Txt_Width"; |
||
148 | this.Txt_Width.Size = new System.Drawing.Size(72, 21); |
||
149 | this.Txt_Width.TabIndex = 10; |
||
150 | 76f465d0 | Gyusu | // |
151 | // Chk_DPI |
||
152 | // |
||
153 | this.Chk_DPI.AutoSize = true; |
||
154 | this.Chk_DPI.Location = new System.Drawing.Point(459, 14); |
||
155 | this.Chk_DPI.Name = "Chk_DPI"; |
||
156 | this.Chk_DPI.Size = new System.Drawing.Size(69, 16); |
||
157 | this.Chk_DPI.TabIndex = 11; |
||
158 | this.Chk_DPI.Text = "Use DPI"; |
||
159 | this.Chk_DPI.UseVisualStyleBackColor = true; |
||
160 | 4601d8de | Gyusu | // |
161 | // ConvertImage |
||
162 | // |
||
163 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); |
||
164 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
||
165 | 393a3042 | esham21 | this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
166 | 4601d8de | Gyusu | this.ClientSize = new System.Drawing.Size(695, 73); |
167 | 76f465d0 | Gyusu | this.Controls.Add(this.Chk_DPI); |
168 | 4601d8de | Gyusu | this.Controls.Add(this.Txt_Width); |
169 | this.Controls.Add(this.Txt_Height); |
||
170 | this.Controls.Add(this.label5); |
||
171 | this.Controls.Add(this.label4); |
||
172 | this.Controls.Add(this.label3); |
||
173 | this.Controls.Add(this.Combo_DPI); |
||
174 | this.Controls.Add(this.label2); |
||
175 | this.Controls.Add(this.Btn_Convert); |
||
176 | this.Controls.Add(this.Btn_LoadPDF); |
||
177 | this.Controls.Add(this.label1); |
||
178 | this.Controls.Add(this.Txt_PDFPath); |
||
179 | 393a3042 | esham21 | this.MaximizeBox = false; |
180 | 4601d8de | Gyusu | this.Name = "ConvertImage"; |
181 | this.ShowIcon = false; |
||
182 | this.Text = "ConvertImage"; |
||
183 | this.ResumeLayout(false); |
||
184 | this.PerformLayout(); |
||
185 | |||
186 | } |
||
187 | |||
188 | #endregion |
||
189 | |||
190 | private System.Windows.Forms.TextBox Txt_PDFPath; |
||
191 | private System.Windows.Forms.Label label1; |
||
192 | private System.Windows.Forms.Button Btn_LoadPDF; |
||
193 | private System.Windows.Forms.Button Btn_Convert; |
||
194 | private System.Windows.Forms.Label label2; |
||
195 | private System.Windows.Forms.ComboBox Combo_DPI; |
||
196 | private System.Windows.Forms.Label label3; |
||
197 | private System.Windows.Forms.Label label4; |
||
198 | private System.Windows.Forms.Label label5; |
||
199 | private System.Windows.Forms.TextBox Txt_Height; |
||
200 | private System.Windows.Forms.TextBox Txt_Width; |
||
201 | 76f465d0 | Gyusu | private System.Windows.Forms.CheckBox Chk_DPI; |
202 | 4601d8de | Gyusu | } |
203 | } |