107 lines
4.5 KiB
C#
107 lines
4.5 KiB
C#
namespace MifareOneTool
|
||
{
|
||
partial class FormDiff
|
||
{
|
||
/// <summary>
|
||
/// Required designer variable.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Clean up any resources being used.
|
||
/// </summary>
|
||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Windows Form Designer generated code
|
||
|
||
/// <summary>
|
||
/// Required method for Designer support - do not modify
|
||
/// the contents of this method with the code editor.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
||
this.button1 = new System.Windows.Forms.Button();
|
||
this.button2 = new System.Windows.Forms.Button();
|
||
this.button3 = new System.Windows.Forms.Button();
|
||
this.SuspendLayout();
|
||
//
|
||
// richTextBox1
|
||
//
|
||
this.richTextBox1.BackColor = System.Drawing.Color.Black;
|
||
this.richTextBox1.ForeColor = System.Drawing.Color.Orange;
|
||
this.richTextBox1.Location = new System.Drawing.Point(12, 74);
|
||
this.richTextBox1.Name = "richTextBox1";
|
||
this.richTextBox1.ReadOnly = true;
|
||
this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
|
||
this.richTextBox1.Size = new System.Drawing.Size(469, 474);
|
||
this.richTextBox1.TabIndex = 0;
|
||
this.richTextBox1.Text = "欢迎使用M1T内置的差异工具!\n说明:\n点击上方的AB两个按键分别选择MFD文件。\n然后点击“比较”即可看到结果。\n";
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(12, 12);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(388, 25);
|
||
this.button1.TabIndex = 1;
|
||
this.button1.Text = "A";
|
||
this.button1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||
//
|
||
// button2
|
||
//
|
||
this.button2.Location = new System.Drawing.Point(12, 43);
|
||
this.button2.Name = "button2";
|
||
this.button2.Size = new System.Drawing.Size(388, 25);
|
||
this.button2.TabIndex = 2;
|
||
this.button2.Text = "B";
|
||
this.button2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||
this.button2.UseVisualStyleBackColor = true;
|
||
this.button2.Click += new System.EventHandler(this.button2_Click);
|
||
//
|
||
// button3
|
||
//
|
||
this.button3.Location = new System.Drawing.Point(406, 12);
|
||
this.button3.Name = "button3";
|
||
this.button3.Size = new System.Drawing.Size(75, 56);
|
||
this.button3.TabIndex = 3;
|
||
this.button3.Text = "比较";
|
||
this.button3.UseVisualStyleBackColor = true;
|
||
this.button3.Click += new System.EventHandler(this.button3_Click);
|
||
//
|
||
// FormDiff
|
||
//
|
||
this.AcceptButton = this.button3;
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(493, 560);
|
||
this.Controls.Add(this.button3);
|
||
this.Controls.Add(this.button2);
|
||
this.Controls.Add(this.button1);
|
||
this.Controls.Add(this.richTextBox1);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||
this.MaximizeBox = false;
|
||
this.Name = "FormDiff";
|
||
this.Text = "DiffTool";
|
||
this.Load += new System.EventHandler(this.FormDiff_Load);
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.RichTextBox richTextBox1;
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.Button button2;
|
||
private System.Windows.Forms.Button button3;
|
||
}
|
||
} |