PageRenderTime 37ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSXmlEncryption/MainForm.Designer.cs

#
C# | 272 lines | 204 code | 6 blank | 62 comment | 3 complexity | 06cca06931bb2dd14cb76af250dd99ff MD5 | raw file
  1. namespace CSXmlEncryption
  2. {
  3. partial class MainForm
  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 Windows Form 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.btnEncrypt = new System.Windows.Forms.Button();
  29. this.gbxRSAParameter = new System.Windows.Forms.GroupBox();
  30. this.tbxRSAParameters = new System.Windows.Forms.TextBox();
  31. this.gbxPlaintextt = new System.Windows.Forms.GroupBox();
  32. this.tbxPlaintext = new System.Windows.Forms.TextBox();
  33. this.gbxCipherTextasText = new System.Windows.Forms.GroupBox();
  34. this.tbxCipherTextasText = new System.Windows.Forms.TextBox();
  35. this.btnDecrypt = new System.Windows.Forms.Button();
  36. this.gbxRecoveredPlaintext = new System.Windows.Forms.GroupBox();
  37. this.tbxRecoveredPlaintext = new System.Windows.Forms.TextBox();
  38. this.groupBox4 = new System.Windows.Forms.GroupBox();
  39. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  40. this.groupBox5 = new System.Windows.Forms.GroupBox();
  41. this.tbxModulus = new System.Windows.Forms.TextBox();
  42. this.groupBox6 = new System.Windows.Forms.GroupBox();
  43. this.tbxExponent = new System.Windows.Forms.TextBox();
  44. this.gbxRSAParameter.SuspendLayout();
  45. this.gbxPlaintextt.SuspendLayout();
  46. this.gbxCipherTextasText.SuspendLayout();
  47. this.gbxRecoveredPlaintext.SuspendLayout();
  48. this.tableLayoutPanel1.SuspendLayout();
  49. this.groupBox5.SuspendLayout();
  50. this.groupBox6.SuspendLayout();
  51. this.SuspendLayout();
  52. //
  53. // btnEncrypt
  54. //
  55. this.btnEncrypt.Location = new System.Drawing.Point(28, 205);
  56. this.btnEncrypt.Name = "btnEncrypt";
  57. this.btnEncrypt.Size = new System.Drawing.Size(75, 23);
  58. this.btnEncrypt.TabIndex = 1;
  59. this.btnEncrypt.Text = "Encrypt";
  60. this.btnEncrypt.UseVisualStyleBackColor = true;
  61. this.btnEncrypt.Click += new System.EventHandler(this.btnEncrypt_Click);
  62. //
  63. // gbxRSAParameter
  64. //
  65. this.gbxRSAParameter.Controls.Add(this.tbxRSAParameters);
  66. this.gbxRSAParameter.Location = new System.Drawing.Point(28, 12);
  67. this.gbxRSAParameter.Name = "gbxRSAParameter";
  68. this.gbxRSAParameter.Size = new System.Drawing.Size(638, 119);
  69. this.gbxRSAParameter.TabIndex = 2;
  70. this.gbxRSAParameter.TabStop = false;
  71. this.gbxRSAParameter.Text = "RSA Parameters";
  72. //
  73. // tbxRSAParameters
  74. //
  75. this.tbxRSAParameters.Dock = System.Windows.Forms.DockStyle.Fill;
  76. this.tbxRSAParameters.Location = new System.Drawing.Point(3, 16);
  77. this.tbxRSAParameters.Multiline = true;
  78. this.tbxRSAParameters.Name = "tbxRSAParameters";
  79. this.tbxRSAParameters.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  80. this.tbxRSAParameters.Size = new System.Drawing.Size(632, 100);
  81. this.tbxRSAParameters.TabIndex = 0;
  82. //
  83. // gbxPlaintextt
  84. //
  85. this.gbxPlaintextt.Controls.Add(this.tbxPlaintext);
  86. this.gbxPlaintextt.Location = new System.Drawing.Point(28, 141);
  87. this.gbxPlaintextt.Name = "gbxPlaintextt";
  88. this.gbxPlaintextt.Size = new System.Drawing.Size(638, 54);
  89. this.gbxPlaintextt.TabIndex = 3;
  90. this.gbxPlaintextt.TabStop = false;
  91. this.gbxPlaintextt.Text = "Plain Xml";
  92. //
  93. // tbxPlaintext
  94. //
  95. this.tbxPlaintext.Dock = System.Windows.Forms.DockStyle.Fill;
  96. this.tbxPlaintext.Location = new System.Drawing.Point(3, 16);
  97. this.tbxPlaintext.Multiline = true;
  98. this.tbxPlaintext.Name = "tbxPlaintext";
  99. this.tbxPlaintext.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  100. this.tbxPlaintext.Size = new System.Drawing.Size(632, 35);
  101. this.tbxPlaintext.TabIndex = 0;
  102. //
  103. // gbxCipherTextasText
  104. //
  105. this.gbxCipherTextasText.Controls.Add(this.tbxCipherTextasText);
  106. this.gbxCipherTextasText.Location = new System.Drawing.Point(28, 238);
  107. this.gbxCipherTextasText.Name = "gbxCipherTextasText";
  108. this.gbxCipherTextasText.Size = new System.Drawing.Size(638, 62);
  109. this.gbxCipherTextasText.TabIndex = 5;
  110. this.gbxCipherTextasText.TabStop = false;
  111. this.gbxCipherTextasText.Text = "Ciphertext displayed as text string";
  112. //
  113. // tbxCipherTextasText
  114. //
  115. this.tbxCipherTextasText.Dock = System.Windows.Forms.DockStyle.Fill;
  116. this.tbxCipherTextasText.Location = new System.Drawing.Point(3, 16);
  117. this.tbxCipherTextasText.Multiline = true;
  118. this.tbxCipherTextasText.Name = "tbxCipherTextasText";
  119. this.tbxCipherTextasText.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  120. this.tbxCipherTextasText.Size = new System.Drawing.Size(632, 43);
  121. this.tbxCipherTextasText.TabIndex = 0;
  122. //
  123. // btnDecrypt
  124. //
  125. this.btnDecrypt.Location = new System.Drawing.Point(28, 310);
  126. this.btnDecrypt.Name = "btnDecrypt";
  127. this.btnDecrypt.Size = new System.Drawing.Size(75, 23);
  128. this.btnDecrypt.TabIndex = 7;
  129. this.btnDecrypt.Text = "Decrypt";
  130. this.btnDecrypt.UseVisualStyleBackColor = true;
  131. this.btnDecrypt.Click += new System.EventHandler(this.btnDecrypt_Click);
  132. //
  133. // gbxRecoveredPlaintext
  134. //
  135. this.gbxRecoveredPlaintext.Controls.Add(this.tbxRecoveredPlaintext);
  136. this.gbxRecoveredPlaintext.Location = new System.Drawing.Point(28, 343);
  137. this.gbxRecoveredPlaintext.Name = "gbxRecoveredPlaintext";
  138. this.gbxRecoveredPlaintext.Size = new System.Drawing.Size(638, 81);
  139. this.gbxRecoveredPlaintext.TabIndex = 8;
  140. this.gbxRecoveredPlaintext.TabStop = false;
  141. this.gbxRecoveredPlaintext.Text = "Recovered Plaintext";
  142. //
  143. // tbxRecoveredPlaintext
  144. //
  145. this.tbxRecoveredPlaintext.Dock = System.Windows.Forms.DockStyle.Fill;
  146. this.tbxRecoveredPlaintext.Location = new System.Drawing.Point(3, 16);
  147. this.tbxRecoveredPlaintext.Multiline = true;
  148. this.tbxRecoveredPlaintext.Name = "tbxRecoveredPlaintext";
  149. this.tbxRecoveredPlaintext.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  150. this.tbxRecoveredPlaintext.Size = new System.Drawing.Size(632, 62);
  151. this.tbxRecoveredPlaintext.TabIndex = 0;
  152. //
  153. // groupBox4
  154. //
  155. this.groupBox4.Location = new System.Drawing.Point(0, 0);
  156. this.groupBox4.Name = "groupBox4";
  157. this.groupBox4.Size = new System.Drawing.Size(200, 100);
  158. this.groupBox4.TabIndex = 0;
  159. this.groupBox4.TabStop = false;
  160. //
  161. // tableLayoutPanel1
  162. //
  163. this.tableLayoutPanel1.ColumnCount = 1;
  164. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  165. this.tableLayoutPanel1.Controls.Add(this.groupBox5, 0, 0);
  166. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  167. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  168. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  169. this.tableLayoutPanel1.RowCount = 2;
  170. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  171. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  172. this.tableLayoutPanel1.Size = new System.Drawing.Size(200, 100);
  173. this.tableLayoutPanel1.TabIndex = 0;
  174. //
  175. // groupBox5
  176. //
  177. this.groupBox5.Controls.Add(this.tbxModulus);
  178. this.groupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
  179. this.groupBox5.Location = new System.Drawing.Point(3, 3);
  180. this.groupBox5.Name = "groupBox5";
  181. this.groupBox5.Size = new System.Drawing.Size(194, 14);
  182. this.groupBox5.TabIndex = 0;
  183. this.groupBox5.TabStop = false;
  184. this.groupBox5.Text = "Modulus";
  185. //
  186. // tbxModulus
  187. //
  188. this.tbxModulus.Dock = System.Windows.Forms.DockStyle.Fill;
  189. this.tbxModulus.Enabled = false;
  190. this.tbxModulus.Location = new System.Drawing.Point(3, 16);
  191. this.tbxModulus.Multiline = true;
  192. this.tbxModulus.Name = "tbxModulus";
  193. this.tbxModulus.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  194. this.tbxModulus.Size = new System.Drawing.Size(188, 0);
  195. this.tbxModulus.TabIndex = 0;
  196. //
  197. // groupBox6
  198. //
  199. this.groupBox6.Controls.Add(this.tbxExponent);
  200. this.groupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
  201. this.groupBox6.Location = new System.Drawing.Point(3, 153);
  202. this.groupBox6.Name = "groupBox6";
  203. this.groupBox6.Size = new System.Drawing.Size(700, 144);
  204. this.groupBox6.TabIndex = 1;
  205. this.groupBox6.TabStop = false;
  206. this.groupBox6.Text = "Exponent";
  207. //
  208. // tbxExponent
  209. //
  210. this.tbxExponent.Dock = System.Windows.Forms.DockStyle.Fill;
  211. this.tbxExponent.Enabled = false;
  212. this.tbxExponent.Location = new System.Drawing.Point(3, 16);
  213. this.tbxExponent.Multiline = true;
  214. this.tbxExponent.Name = "tbxExponent";
  215. this.tbxExponent.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  216. this.tbxExponent.Size = new System.Drawing.Size(694, 125);
  217. this.tbxExponent.TabIndex = 0;
  218. //
  219. // formXMLEncryptDecrypt
  220. //
  221. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  222. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  223. this.ClientSize = new System.Drawing.Size(669, 446);
  224. this.Controls.Add(this.gbxRecoveredPlaintext);
  225. this.Controls.Add(this.btnDecrypt);
  226. this.Controls.Add(this.gbxCipherTextasText);
  227. this.Controls.Add(this.gbxPlaintextt);
  228. this.Controls.Add(this.gbxRSAParameter);
  229. this.Controls.Add(this.btnEncrypt);
  230. this.Name = "formXMLEncryptDecrypt";
  231. this.Text = "XMLEncryptDecrypt";
  232. this.Load += new System.EventHandler(this.XMLEncryptDecryptForm_Load);
  233. this.gbxRSAParameter.ResumeLayout(false);
  234. this.gbxRSAParameter.PerformLayout();
  235. this.gbxPlaintextt.ResumeLayout(false);
  236. this.gbxPlaintextt.PerformLayout();
  237. this.gbxCipherTextasText.ResumeLayout(false);
  238. this.gbxCipherTextasText.PerformLayout();
  239. this.gbxRecoveredPlaintext.ResumeLayout(false);
  240. this.gbxRecoveredPlaintext.PerformLayout();
  241. this.tableLayoutPanel1.ResumeLayout(false);
  242. this.groupBox5.ResumeLayout(false);
  243. this.groupBox5.PerformLayout();
  244. this.groupBox6.ResumeLayout(false);
  245. this.groupBox6.PerformLayout();
  246. this.ResumeLayout(false);
  247. }
  248. #endregion
  249. private System.Windows.Forms.Button btnEncrypt;
  250. private System.Windows.Forms.GroupBox gbxRSAParameter;
  251. private System.Windows.Forms.TextBox tbxRSAParameters;
  252. private System.Windows.Forms.GroupBox gbxPlaintextt;
  253. private System.Windows.Forms.TextBox tbxPlaintext;
  254. private System.Windows.Forms.GroupBox gbxCipherTextasText;
  255. private System.Windows.Forms.TextBox tbxCipherTextasText;
  256. private System.Windows.Forms.Button btnDecrypt;
  257. private System.Windows.Forms.GroupBox gbxRecoveredPlaintext;
  258. private System.Windows.Forms.TextBox tbxRecoveredPlaintext;
  259. private System.Windows.Forms.GroupBox groupBox4;
  260. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  261. private System.Windows.Forms.GroupBox groupBox5;
  262. private System.Windows.Forms.TextBox tbxModulus;
  263. private System.Windows.Forms.GroupBox groupBox6;
  264. private System.Windows.Forms.TextBox tbxExponent;
  265. }
  266. }