PageRenderTime 54ms CodeModel.GetById 26ms RepoModel.GetById 1ms app.codeStats 0ms

/docTranslate/UCTranslate.Designer.cs

#
C# | 270 lines | 201 code | 7 blank | 62 comment | 3 complexity | 4235ca2972823113ab26b193661daa91 MD5 | raw file
  1. namespace docTranslate
  2. {
  3. partial class UCTranslate
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Component Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UCTranslate));
  30. this.groupBox1 = new System.Windows.Forms.GroupBox();
  31. this.cbbTo = new System.Windows.Forms.ComboBox();
  32. this.cbbFrom = new System.Windows.Forms.ComboBox();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.btnTranslate = new System.Windows.Forms.Button();
  36. this.groupBox2 = new System.Windows.Forms.GroupBox();
  37. this.label6 = new System.Windows.Forms.Label();
  38. this.label5 = new System.Windows.Forms.Label();
  39. this.label4 = new System.Windows.Forms.Label();
  40. this.label1 = new System.Windows.Forms.Label();
  41. this.rdbEndDocument = new System.Windows.Forms.RadioButton();
  42. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  43. this.rdbInLine = new System.Windows.Forms.RadioButton();
  44. this.rdbSameDocument = new System.Windows.Forms.RadioButton();
  45. this.rdbNewDocument = new System.Windows.Forms.RadioButton();
  46. this.groupBox1.SuspendLayout();
  47. this.groupBox2.SuspendLayout();
  48. this.SuspendLayout();
  49. //
  50. // groupBox1
  51. //
  52. this.groupBox1.Controls.Add(this.cbbTo);
  53. this.groupBox1.Controls.Add(this.cbbFrom);
  54. this.groupBox1.Controls.Add(this.label3);
  55. this.groupBox1.Controls.Add(this.label2);
  56. this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  57. this.groupBox1.Location = new System.Drawing.Point(48, 3);
  58. this.groupBox1.Name = "groupBox1";
  59. this.groupBox1.Size = new System.Drawing.Size(247, 143);
  60. this.groupBox1.TabIndex = 6;
  61. this.groupBox1.TabStop = false;
  62. this.groupBox1.Text = "Select a Language to Translate";
  63. //
  64. // cbbTo
  65. //
  66. this.cbbTo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  67. this.cbbTo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  68. this.cbbTo.FormattingEnabled = true;
  69. this.cbbTo.Location = new System.Drawing.Point(77, 93);
  70. this.cbbTo.Name = "cbbTo";
  71. this.cbbTo.Size = new System.Drawing.Size(121, 21);
  72. this.cbbTo.TabIndex = 9;
  73. //
  74. // cbbFrom
  75. //
  76. this.cbbFrom.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  77. this.cbbFrom.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  78. this.cbbFrom.FormattingEnabled = true;
  79. this.cbbFrom.Location = new System.Drawing.Point(77, 45);
  80. this.cbbFrom.Name = "cbbFrom";
  81. this.cbbFrom.Size = new System.Drawing.Size(121, 21);
  82. this.cbbFrom.TabIndex = 8;
  83. //
  84. // label3
  85. //
  86. this.label3.AutoSize = true;
  87. this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  88. this.label3.Location = new System.Drawing.Point(45, 96);
  89. this.label3.Name = "label3";
  90. this.label3.Size = new System.Drawing.Size(23, 13);
  91. this.label3.TabIndex = 7;
  92. this.label3.Text = "To:";
  93. //
  94. // label2
  95. //
  96. this.label2.AutoSize = true;
  97. this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  98. this.label2.Location = new System.Drawing.Point(43, 48);
  99. this.label2.Name = "label2";
  100. this.label2.Size = new System.Drawing.Size(33, 13);
  101. this.label2.TabIndex = 6;
  102. this.label2.Text = "From:";
  103. //
  104. // btnTranslate
  105. //
  106. this.btnTranslate.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  107. this.btnTranslate.Location = new System.Drawing.Point(262, 360);
  108. this.btnTranslate.Name = "btnTranslate";
  109. this.btnTranslate.Size = new System.Drawing.Size(75, 23);
  110. this.btnTranslate.TabIndex = 10;
  111. this.btnTranslate.Text = "Translate";
  112. this.btnTranslate.UseVisualStyleBackColor = true;
  113. this.btnTranslate.Click += new System.EventHandler(this.btnTranslate_Click);
  114. //
  115. // groupBox2
  116. //
  117. this.groupBox2.Controls.Add(this.label6);
  118. this.groupBox2.Controls.Add(this.label5);
  119. this.groupBox2.Controls.Add(this.label4);
  120. this.groupBox2.Controls.Add(this.label1);
  121. this.groupBox2.Controls.Add(this.rdbEndDocument);
  122. this.groupBox2.Controls.Add(this.rdbInLine);
  123. this.groupBox2.Controls.Add(this.rdbSameDocument);
  124. this.groupBox2.Controls.Add(this.rdbNewDocument);
  125. this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  126. this.groupBox2.Location = new System.Drawing.Point(3, 152);
  127. this.groupBox2.Name = "groupBox2";
  128. this.groupBox2.Size = new System.Drawing.Size(334, 202);
  129. this.groupBox2.TabIndex = 11;
  130. this.groupBox2.TabStop = false;
  131. this.groupBox2.Text = "Document Type";
  132. //
  133. // label6
  134. //
  135. this.label6.AutoSize = true;
  136. this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  137. this.label6.Location = new System.Drawing.Point(196, 170);
  138. this.label6.Name = "label6";
  139. this.label6.Size = new System.Drawing.Size(110, 16);
  140. this.label6.TabIndex = 7;
  141. this.label6.Text = "End of Document";
  142. //
  143. // label5
  144. //
  145. this.label5.AutoSize = true;
  146. this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  147. this.label5.Location = new System.Drawing.Point(25, 170);
  148. this.label5.Name = "label5";
  149. this.label5.Size = new System.Drawing.Size(108, 16);
  150. this.label5.TabIndex = 6;
  151. this.label5.Text = "Same Document";
  152. //
  153. // label4
  154. //
  155. this.label4.AutoSize = true;
  156. this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  157. this.label4.Location = new System.Drawing.Point(231, 76);
  158. this.label4.Name = "label4";
  159. this.label4.Size = new System.Drawing.Size(46, 16);
  160. this.label4.TabIndex = 5;
  161. this.label4.Text = "In Line";
  162. //
  163. // label1
  164. //
  165. this.label1.AutoSize = true;
  166. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  167. this.label1.Location = new System.Drawing.Point(28, 76);
  168. this.label1.Name = "label1";
  169. this.label1.Size = new System.Drawing.Size(99, 16);
  170. this.label1.TabIndex = 4;
  171. this.label1.Text = "New Document";
  172. //
  173. // rdbEndDocument
  174. //
  175. this.rdbEndDocument.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  176. this.rdbEndDocument.ImageIndex = 0;
  177. this.rdbEndDocument.ImageList = this.imageList1;
  178. this.rdbEndDocument.Location = new System.Drawing.Point(213, 116);
  179. this.rdbEndDocument.Name = "rdbEndDocument";
  180. this.rdbEndDocument.Size = new System.Drawing.Size(65, 51);
  181. this.rdbEndDocument.TabIndex = 3;
  182. this.rdbEndDocument.TabStop = true;
  183. this.rdbEndDocument.UseVisualStyleBackColor = true;
  184. //
  185. // imageList1
  186. //
  187. this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
  188. this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
  189. this.imageList1.Images.SetKeyName(0, "endDocument.bmp");
  190. this.imageList1.Images.SetKeyName(1, "inLine.bmp");
  191. this.imageList1.Images.SetKeyName(2, "newDocument.gif");
  192. this.imageList1.Images.SetKeyName(3, "sameDocument.bmp");
  193. //
  194. // rdbInLine
  195. //
  196. this.rdbInLine.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  197. this.rdbInLine.ImageIndex = 1;
  198. this.rdbInLine.ImageList = this.imageList1;
  199. this.rdbInLine.Location = new System.Drawing.Point(213, 26);
  200. this.rdbInLine.Name = "rdbInLine";
  201. this.rdbInLine.Size = new System.Drawing.Size(65, 51);
  202. this.rdbInLine.TabIndex = 2;
  203. this.rdbInLine.TabStop = true;
  204. this.rdbInLine.UseVisualStyleBackColor = true;
  205. //
  206. // rdbSameDocument
  207. //
  208. this.rdbSameDocument.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  209. this.rdbSameDocument.ImageIndex = 3;
  210. this.rdbSameDocument.ImageList = this.imageList1;
  211. this.rdbSameDocument.Location = new System.Drawing.Point(36, 116);
  212. this.rdbSameDocument.Name = "rdbSameDocument";
  213. this.rdbSameDocument.Size = new System.Drawing.Size(65, 51);
  214. this.rdbSameDocument.TabIndex = 1;
  215. this.rdbSameDocument.TabStop = true;
  216. this.rdbSameDocument.UseVisualStyleBackColor = true;
  217. //
  218. // rdbNewDocument
  219. //
  220. this.rdbNewDocument.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  221. this.rdbNewDocument.ImageIndex = 2;
  222. this.rdbNewDocument.ImageList = this.imageList1;
  223. this.rdbNewDocument.Location = new System.Drawing.Point(36, 26);
  224. this.rdbNewDocument.Name = "rdbNewDocument";
  225. this.rdbNewDocument.Size = new System.Drawing.Size(65, 51);
  226. this.rdbNewDocument.TabIndex = 0;
  227. this.rdbNewDocument.TabStop = true;
  228. this.rdbNewDocument.UseVisualStyleBackColor = true;
  229. //
  230. // UCTranslate
  231. //
  232. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  233. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  234. this.Controls.Add(this.groupBox2);
  235. this.Controls.Add(this.btnTranslate);
  236. this.Controls.Add(this.groupBox1);
  237. this.Name = "UCTranslate";
  238. this.Size = new System.Drawing.Size(344, 390);
  239. this.groupBox1.ResumeLayout(false);
  240. this.groupBox1.PerformLayout();
  241. this.groupBox2.ResumeLayout(false);
  242. this.groupBox2.PerformLayout();
  243. this.ResumeLayout(false);
  244. }
  245. #endregion
  246. private System.Windows.Forms.GroupBox groupBox1;
  247. private System.Windows.Forms.Button btnTranslate;
  248. private System.Windows.Forms.ComboBox cbbTo;
  249. private System.Windows.Forms.ComboBox cbbFrom;
  250. private System.Windows.Forms.Label label3;
  251. private System.Windows.Forms.Label label2;
  252. private System.Windows.Forms.GroupBox groupBox2;
  253. private System.Windows.Forms.RadioButton rdbNewDocument;
  254. private System.Windows.Forms.ImageList imageList1;
  255. private System.Windows.Forms.RadioButton rdbEndDocument;
  256. private System.Windows.Forms.RadioButton rdbInLine;
  257. private System.Windows.Forms.RadioButton rdbSameDocument;
  258. private System.Windows.Forms.Label label6;
  259. private System.Windows.Forms.Label label5;
  260. private System.Windows.Forms.Label label4;
  261. private System.Windows.Forms.Label label1;
  262. }
  263. }