123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- namespace FileToMD5
- {
- partial class Form_MD5
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.txtFilePath = new System.Windows.Forms.TextBox();
- this.btn_md5 = new System.Windows.Forms.Button();
- this.txtMd5 = new System.Windows.Forms.TextBox();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.ForeColor = System.Drawing.Color.Black;
- this.label1.Location = new System.Drawing.Point(12, 24);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(197, 22);
- this.label1.TabIndex = 0;
- this.label1.Text = "当前文件的MD5码:";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label3.Location = new System.Drawing.Point(16, 264);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(88, 16);
- this.label3.TabIndex = 2;
- this.label3.Text = "选择文件:";
- //
- // txtFilePath
- //
- this.txtFilePath.Enabled = false;
- this.txtFilePath.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtFilePath.Location = new System.Drawing.Point(110, 254);
- this.txtFilePath.Multiline = true;
- this.txtFilePath.Name = "txtFilePath";
- this.txtFilePath.Size = new System.Drawing.Size(520, 40);
- this.txtFilePath.TabIndex = 3;
- //
- // btn_md5
- //
- this.btn_md5.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn_md5.ForeColor = System.Drawing.Color.Red;
- this.btn_md5.Location = new System.Drawing.Point(661, 254);
- this.btn_md5.Name = "btn_md5";
- this.btn_md5.Size = new System.Drawing.Size(100, 40);
- this.btn_md5.TabIndex = 4;
- this.btn_md5.Text = "浏览";
- this.btn_md5.UseVisualStyleBackColor = true;
- this.btn_md5.Click += new System.EventHandler(this.btn_md5_Click);
- //
- // txtMd5
- //
- this.txtMd5.Font = new System.Drawing.Font("微软雅黑", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtMd5.ForeColor = System.Drawing.Color.ForestGreen;
- this.txtMd5.Location = new System.Drawing.Point(19, 91);
- this.txtMd5.Multiline = true;
- this.txtMd5.Name = "txtMd5";
- this.txtMd5.Size = new System.Drawing.Size(742, 50);
- this.txtMd5.TabIndex = 5;
- this.txtMd5.Text = "点击浏览选中文件后自动计算MD5";
- //
- // Form_MD5
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(784, 361);
- this.Controls.Add(this.txtMd5);
- this.Controls.Add(this.btn_md5);
- this.Controls.Add(this.txtFilePath);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.label1);
- this.ForeColor = System.Drawing.Color.Black;
- this.Name = "Form_MD5";
- this.Text = "选择文件获取MD5码";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.TextBox txtFilePath;
- private System.Windows.Forms.Button btn_md5;
- private System.Windows.Forms.TextBox txtMd5;
- }
- }
|