PageRenderTime 42ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
C# | 204 lines | 151 code | 6 blank | 47 comment | 3 complexity | fba828f24148d4c3d6e4d703a7992992 MD5 | raw file
  1. namespace CSXmlDigitalSignature
  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.btnSign = new System.Windows.Forms.Button();
  29. this.btnVerify = new System.Windows.Forms.Button();
  30. this.groupBox1 = new System.Windows.Forms.GroupBox();
  31. this.tbxPlaintext = new System.Windows.Forms.TextBox();
  32. this.groupBox3 = new System.Windows.Forms.GroupBox();
  33. this.tbxDigitalSignature = new System.Windows.Forms.TextBox();
  34. this.groupBox2 = new System.Windows.Forms.GroupBox();
  35. this.tbxRSAParameters = new System.Windows.Forms.TextBox();
  36. this.btnChangeXML = new System.Windows.Forms.Button();
  37. this.groupBox4 = new System.Windows.Forms.GroupBox();
  38. this.tbxModifiedMessage = new System.Windows.Forms.TextBox();
  39. this.groupBox1.SuspendLayout();
  40. this.groupBox3.SuspendLayout();
  41. this.groupBox2.SuspendLayout();
  42. this.groupBox4.SuspendLayout();
  43. this.SuspendLayout();
  44. //
  45. // btnSign
  46. //
  47. this.btnSign.Location = new System.Drawing.Point(12, 12);
  48. this.btnSign.Name = "btnSign";
  49. this.btnSign.Size = new System.Drawing.Size(90, 32);
  50. this.btnSign.TabIndex = 1;
  51. this.btnSign.Text = "Sign";
  52. this.btnSign.UseVisualStyleBackColor = true;
  53. this.btnSign.Click += new System.EventHandler(this.btnSign_Click);
  54. //
  55. // btnVerify
  56. //
  57. this.btnVerify.Location = new System.Drawing.Point(12, 127);
  58. this.btnVerify.Name = "btnVerify";
  59. this.btnVerify.Size = new System.Drawing.Size(90, 32);
  60. this.btnVerify.TabIndex = 5;
  61. this.btnVerify.Text = "Verify";
  62. this.btnVerify.UseVisualStyleBackColor = true;
  63. this.btnVerify.Click += new System.EventHandler(this.btnVerify_Click);
  64. //
  65. // groupBox1
  66. //
  67. this.groupBox1.Controls.Add(this.tbxPlaintext);
  68. this.groupBox1.Location = new System.Drawing.Point(122, 12);
  69. this.groupBox1.Name = "groupBox1";
  70. this.groupBox1.Size = new System.Drawing.Size(599, 96);
  71. this.groupBox1.TabIndex = 6;
  72. this.groupBox1.TabStop = false;
  73. this.groupBox1.Text = "Original Message to be signed";
  74. //
  75. // tbxPlaintext
  76. //
  77. this.tbxPlaintext.Dock = System.Windows.Forms.DockStyle.Fill;
  78. this.tbxPlaintext.Location = new System.Drawing.Point(3, 16);
  79. this.tbxPlaintext.Multiline = true;
  80. this.tbxPlaintext.Name = "tbxPlaintext";
  81. this.tbxPlaintext.ReadOnly = true;
  82. this.tbxPlaintext.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  83. this.tbxPlaintext.Size = new System.Drawing.Size(593, 77);
  84. this.tbxPlaintext.TabIndex = 0;
  85. //
  86. // groupBox3
  87. //
  88. this.groupBox3.Controls.Add(this.tbxDigitalSignature);
  89. this.groupBox3.Location = new System.Drawing.Point(122, 127);
  90. this.groupBox3.Name = "groupBox3";
  91. this.groupBox3.Size = new System.Drawing.Size(599, 96);
  92. this.groupBox3.TabIndex = 7;
  93. this.groupBox3.TabStop = false;
  94. this.groupBox3.Text = "Digital Signature(Encrypted Message Digest)";
  95. //
  96. // tbxDigitalSignature
  97. //
  98. this.tbxDigitalSignature.Dock = System.Windows.Forms.DockStyle.Fill;
  99. this.tbxDigitalSignature.Location = new System.Drawing.Point(3, 16);
  100. this.tbxDigitalSignature.Multiline = true;
  101. this.tbxDigitalSignature.Name = "tbxDigitalSignature";
  102. this.tbxDigitalSignature.ReadOnly = true;
  103. this.tbxDigitalSignature.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  104. this.tbxDigitalSignature.Size = new System.Drawing.Size(593, 77);
  105. this.tbxDigitalSignature.TabIndex = 0;
  106. //
  107. // groupBox2
  108. //
  109. this.groupBox2.Controls.Add(this.tbxRSAParameters);
  110. this.groupBox2.Location = new System.Drawing.Point(24, 363);
  111. this.groupBox2.Name = "groupBox2";
  112. this.groupBox2.Size = new System.Drawing.Size(706, 224);
  113. this.groupBox2.TabIndex = 8;
  114. this.groupBox2.TabStop = false;
  115. this.groupBox2.Text = "RSA parameters";
  116. //
  117. // tbxRSAParameters
  118. //
  119. this.tbxRSAParameters.Dock = System.Windows.Forms.DockStyle.Fill;
  120. this.tbxRSAParameters.Location = new System.Drawing.Point(3, 16);
  121. this.tbxRSAParameters.Multiline = true;
  122. this.tbxRSAParameters.Name = "tbxRSAParameters";
  123. this.tbxRSAParameters.ReadOnly = true;
  124. this.tbxRSAParameters.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  125. this.tbxRSAParameters.Size = new System.Drawing.Size(700, 205);
  126. this.tbxRSAParameters.TabIndex = 0;
  127. //
  128. // btnChangeXML
  129. //
  130. this.btnChangeXML.Location = new System.Drawing.Point(15, 245);
  131. this.btnChangeXML.Name = "btnChangeXML";
  132. this.btnChangeXML.Size = new System.Drawing.Size(90, 32);
  133. this.btnChangeXML.TabIndex = 9;
  134. this.btnChangeXML.Text = "change Xml ";
  135. this.btnChangeXML.UseVisualStyleBackColor = true;
  136. this.btnChangeXML.Click += new System.EventHandler(this.btnChangeXML_Click);
  137. //
  138. // groupBox4
  139. //
  140. this.groupBox4.Controls.Add(this.tbxModifiedMessage);
  141. this.groupBox4.Location = new System.Drawing.Point(122, 245);
  142. this.groupBox4.Name = "groupBox4";
  143. this.groupBox4.Size = new System.Drawing.Size(599, 96);
  144. this.groupBox4.TabIndex = 10;
  145. this.groupBox4.TabStop = false;
  146. this.groupBox4.Text = "Modified Message";
  147. //
  148. // tbxModifiedMessage
  149. //
  150. this.tbxModifiedMessage.Dock = System.Windows.Forms.DockStyle.Fill;
  151. this.tbxModifiedMessage.Location = new System.Drawing.Point(3, 16);
  152. this.tbxModifiedMessage.Multiline = true;
  153. this.tbxModifiedMessage.Name = "tbxModifiedMessage";
  154. this.tbxModifiedMessage.ReadOnly = true;
  155. this.tbxModifiedMessage.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  156. this.tbxModifiedMessage.Size = new System.Drawing.Size(593, 77);
  157. this.tbxModifiedMessage.TabIndex = 0;
  158. //
  159. // XMLDigitalSignatureForm
  160. //
  161. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  162. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  163. this.ClientSize = new System.Drawing.Size(742, 619);
  164. this.Controls.Add(this.groupBox4);
  165. this.Controls.Add(this.btnChangeXML);
  166. this.Controls.Add(this.groupBox2);
  167. this.Controls.Add(this.groupBox3);
  168. this.Controls.Add(this.groupBox1);
  169. this.Controls.Add(this.btnVerify);
  170. this.Controls.Add(this.btnSign);
  171. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  172. this.Name = "XMLDigitalSignatureForm";
  173. this.Text = "XMLDigitalSignature";
  174. this.Load += new System.EventHandler(this.XMLDigitalSignatureForm_Load);
  175. this.groupBox1.ResumeLayout(false);
  176. this.groupBox1.PerformLayout();
  177. this.groupBox3.ResumeLayout(false);
  178. this.groupBox3.PerformLayout();
  179. this.groupBox2.ResumeLayout(false);
  180. this.groupBox2.PerformLayout();
  181. this.groupBox4.ResumeLayout(false);
  182. this.groupBox4.PerformLayout();
  183. this.ResumeLayout(false);
  184. }
  185. #endregion
  186. private System.Windows.Forms.Button btnSign;
  187. private System.Windows.Forms.Button btnVerify;
  188. private System.Windows.Forms.GroupBox groupBox1;
  189. private System.Windows.Forms.TextBox tbxPlaintext;
  190. private System.Windows.Forms.GroupBox groupBox3;
  191. private System.Windows.Forms.TextBox tbxDigitalSignature;
  192. private System.Windows.Forms.GroupBox groupBox2;
  193. private System.Windows.Forms.TextBox tbxRSAParameters;
  194. private System.Windows.Forms.Button btnChangeXML;
  195. private System.Windows.Forms.GroupBox groupBox4;
  196. private System.Windows.Forms.TextBox tbxModifiedMessage;
  197. }
  198. }