Form1.Designer.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. namespace FileToMD5
  2. {
  3. partial class Form_MD5
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.label3 = new System.Windows.Forms.Label();
  30. this.txtFilePath = new System.Windows.Forms.TextBox();
  31. this.btn_md5 = new System.Windows.Forms.Button();
  32. this.txtMd5 = new System.Windows.Forms.TextBox();
  33. this.SuspendLayout();
  34. //
  35. // label1
  36. //
  37. this.label1.AutoSize = true;
  38. this.label1.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  39. this.label1.ForeColor = System.Drawing.Color.Black;
  40. this.label1.Location = new System.Drawing.Point(12, 24);
  41. this.label1.Name = "label1";
  42. this.label1.Size = new System.Drawing.Size(197, 22);
  43. this.label1.TabIndex = 0;
  44. this.label1.Text = "当前文件的MD5码:";
  45. //
  46. // label3
  47. //
  48. this.label3.AutoSize = true;
  49. this.label3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  50. this.label3.Location = new System.Drawing.Point(16, 264);
  51. this.label3.Name = "label3";
  52. this.label3.Size = new System.Drawing.Size(88, 16);
  53. this.label3.TabIndex = 2;
  54. this.label3.Text = "选择文件:";
  55. //
  56. // txtFilePath
  57. //
  58. this.txtFilePath.Enabled = false;
  59. this.txtFilePath.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  60. this.txtFilePath.Location = new System.Drawing.Point(110, 254);
  61. this.txtFilePath.Multiline = true;
  62. this.txtFilePath.Name = "txtFilePath";
  63. this.txtFilePath.Size = new System.Drawing.Size(520, 40);
  64. this.txtFilePath.TabIndex = 3;
  65. //
  66. // btn_md5
  67. //
  68. this.btn_md5.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  69. this.btn_md5.ForeColor = System.Drawing.Color.Red;
  70. this.btn_md5.Location = new System.Drawing.Point(661, 254);
  71. this.btn_md5.Name = "btn_md5";
  72. this.btn_md5.Size = new System.Drawing.Size(100, 40);
  73. this.btn_md5.TabIndex = 4;
  74. this.btn_md5.Text = "浏览";
  75. this.btn_md5.UseVisualStyleBackColor = true;
  76. this.btn_md5.Click += new System.EventHandler(this.btn_md5_Click);
  77. //
  78. // txtMd5
  79. //
  80. this.txtMd5.Font = new System.Drawing.Font("微软雅黑", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  81. this.txtMd5.ForeColor = System.Drawing.Color.ForestGreen;
  82. this.txtMd5.Location = new System.Drawing.Point(19, 91);
  83. this.txtMd5.Multiline = true;
  84. this.txtMd5.Name = "txtMd5";
  85. this.txtMd5.Size = new System.Drawing.Size(742, 50);
  86. this.txtMd5.TabIndex = 5;
  87. this.txtMd5.Text = "点击浏览选中文件后自动计算MD5";
  88. //
  89. // Form_MD5
  90. //
  91. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  92. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  93. this.ClientSize = new System.Drawing.Size(784, 361);
  94. this.Controls.Add(this.txtMd5);
  95. this.Controls.Add(this.btn_md5);
  96. this.Controls.Add(this.txtFilePath);
  97. this.Controls.Add(this.label3);
  98. this.Controls.Add(this.label1);
  99. this.ForeColor = System.Drawing.Color.Black;
  100. this.Name = "Form_MD5";
  101. this.Text = "选择文件获取MD5码";
  102. this.ResumeLayout(false);
  103. this.PerformLayout();
  104. }
  105. #endregion
  106. private System.Windows.Forms.Label label1;
  107. private System.Windows.Forms.Label label3;
  108. private System.Windows.Forms.TextBox txtFilePath;
  109. private System.Windows.Forms.Button btn_md5;
  110. private System.Windows.Forms.TextBox txtMd5;
  111. }
  112. }