233 lines
10 KiB
C#
233 lines
10 KiB
C#
|
namespace CanTool
|
|||
|
{
|
|||
|
partial class MessageConfigForm
|
|||
|
{
|
|||
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.label3 = new System.Windows.Forms.Label();
|
|||
|
this.txtMessageId = new System.Windows.Forms.TextBox();
|
|||
|
this.txtMessageLen = new System.Windows.Forms.TextBox();
|
|||
|
this.txtMessageData0 = new System.Windows.Forms.TextBox();
|
|||
|
this.btnOk = new System.Windows.Forms.Button();
|
|||
|
this.btnCancel = new System.Windows.Forms.Button();
|
|||
|
this.txtMessageData1 = new System.Windows.Forms.TextBox();
|
|||
|
this.txtMessageData2 = new System.Windows.Forms.TextBox();
|
|||
|
this.txtMessageData3 = new System.Windows.Forms.TextBox();
|
|||
|
this.txtMessageData4 = new System.Windows.Forms.TextBox();
|
|||
|
this.txtMessageData5 = new System.Windows.Forms.TextBox();
|
|||
|
this.txtMessageData6 = new System.Windows.Forms.TextBox();
|
|||
|
this.txtMessageData7 = new System.Windows.Forms.TextBox();
|
|||
|
this.lblInfo = new System.Windows.Forms.Label();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(13, 13);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(53, 12);
|
|||
|
this.label1.TabIndex = 0;
|
|||
|
this.label1.Text = "ID:(Hex)";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Location = new System.Drawing.Point(186, 13);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(29, 12);
|
|||
|
this.label2.TabIndex = 1;
|
|||
|
this.label2.Text = "Len:";
|
|||
|
//
|
|||
|
// label3
|
|||
|
//
|
|||
|
this.label3.AutoSize = true;
|
|||
|
this.label3.Location = new System.Drawing.Point(13, 74);
|
|||
|
this.label3.Name = "label3";
|
|||
|
this.label3.Size = new System.Drawing.Size(65, 12);
|
|||
|
this.label3.TabIndex = 2;
|
|||
|
this.label3.Text = "Data:(Hex)";
|
|||
|
//
|
|||
|
// txtMessageId
|
|||
|
//
|
|||
|
this.txtMessageId.Location = new System.Drawing.Point(15, 38);
|
|||
|
this.txtMessageId.Name = "txtMessageId";
|
|||
|
this.txtMessageId.Size = new System.Drawing.Size(150, 21);
|
|||
|
this.txtMessageId.TabIndex = 3;
|
|||
|
this.txtMessageId.Text = "0";
|
|||
|
//
|
|||
|
// txtMessageLen
|
|||
|
//
|
|||
|
this.txtMessageLen.Location = new System.Drawing.Point(188, 38);
|
|||
|
this.txtMessageLen.Name = "txtMessageLen";
|
|||
|
this.txtMessageLen.Size = new System.Drawing.Size(43, 21);
|
|||
|
this.txtMessageLen.TabIndex = 4;
|
|||
|
this.txtMessageLen.Text = "8";
|
|||
|
//
|
|||
|
// txtMessageData0
|
|||
|
//
|
|||
|
this.txtMessageData0.Location = new System.Drawing.Point(15, 99);
|
|||
|
this.txtMessageData0.Name = "txtMessageData0";
|
|||
|
this.txtMessageData0.Size = new System.Drawing.Size(28, 21);
|
|||
|
this.txtMessageData0.TabIndex = 5;
|
|||
|
this.txtMessageData0.Text = "0";
|
|||
|
//
|
|||
|
// btnOk
|
|||
|
//
|
|||
|
this.btnOk.Location = new System.Drawing.Point(128, 258);
|
|||
|
this.btnOk.Name = "btnOk";
|
|||
|
this.btnOk.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.btnOk.TabIndex = 6;
|
|||
|
this.btnOk.Text = "确定";
|
|||
|
this.btnOk.UseVisualStyleBackColor = true;
|
|||
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|||
|
//
|
|||
|
// btnCancel
|
|||
|
//
|
|||
|
this.btnCancel.Location = new System.Drawing.Point(209, 258);
|
|||
|
this.btnCancel.Name = "btnCancel";
|
|||
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.btnCancel.TabIndex = 7;
|
|||
|
this.btnCancel.Text = "取消";
|
|||
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|||
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|||
|
//
|
|||
|
// txtMessageData1
|
|||
|
//
|
|||
|
this.txtMessageData1.Location = new System.Drawing.Point(50, 99);
|
|||
|
this.txtMessageData1.Name = "txtMessageData1";
|
|||
|
this.txtMessageData1.Size = new System.Drawing.Size(28, 21);
|
|||
|
this.txtMessageData1.TabIndex = 8;
|
|||
|
this.txtMessageData1.Text = "0";
|
|||
|
//
|
|||
|
// txtMessageData2
|
|||
|
//
|
|||
|
this.txtMessageData2.Location = new System.Drawing.Point(84, 99);
|
|||
|
this.txtMessageData2.Name = "txtMessageData2";
|
|||
|
this.txtMessageData2.Size = new System.Drawing.Size(28, 21);
|
|||
|
this.txtMessageData2.TabIndex = 9;
|
|||
|
this.txtMessageData2.Text = "0";
|
|||
|
//
|
|||
|
// txtMessageData3
|
|||
|
//
|
|||
|
this.txtMessageData3.Location = new System.Drawing.Point(118, 99);
|
|||
|
this.txtMessageData3.Name = "txtMessageData3";
|
|||
|
this.txtMessageData3.Size = new System.Drawing.Size(28, 21);
|
|||
|
this.txtMessageData3.TabIndex = 10;
|
|||
|
this.txtMessageData3.Text = "0";
|
|||
|
//
|
|||
|
// txtMessageData4
|
|||
|
//
|
|||
|
this.txtMessageData4.Location = new System.Drawing.Point(152, 99);
|
|||
|
this.txtMessageData4.Name = "txtMessageData4";
|
|||
|
this.txtMessageData4.Size = new System.Drawing.Size(28, 21);
|
|||
|
this.txtMessageData4.TabIndex = 11;
|
|||
|
this.txtMessageData4.Text = "0";
|
|||
|
//
|
|||
|
// txtMessageData5
|
|||
|
//
|
|||
|
this.txtMessageData5.Location = new System.Drawing.Point(188, 99);
|
|||
|
this.txtMessageData5.Name = "txtMessageData5";
|
|||
|
this.txtMessageData5.Size = new System.Drawing.Size(28, 21);
|
|||
|
this.txtMessageData5.TabIndex = 12;
|
|||
|
this.txtMessageData5.Text = "0";
|
|||
|
//
|
|||
|
// txtMessageData6
|
|||
|
//
|
|||
|
this.txtMessageData6.Location = new System.Drawing.Point(222, 99);
|
|||
|
this.txtMessageData6.Name = "txtMessageData6";
|
|||
|
this.txtMessageData6.Size = new System.Drawing.Size(28, 21);
|
|||
|
this.txtMessageData6.TabIndex = 13;
|
|||
|
this.txtMessageData6.Text = "0";
|
|||
|
//
|
|||
|
// txtMessageData7
|
|||
|
//
|
|||
|
this.txtMessageData7.Location = new System.Drawing.Point(256, 99);
|
|||
|
this.txtMessageData7.Name = "txtMessageData7";
|
|||
|
this.txtMessageData7.Size = new System.Drawing.Size(28, 21);
|
|||
|
this.txtMessageData7.TabIndex = 14;
|
|||
|
this.txtMessageData7.Text = "0";
|
|||
|
//
|
|||
|
// lblInfo
|
|||
|
//
|
|||
|
this.lblInfo.AutoSize = true;
|
|||
|
this.lblInfo.Location = new System.Drawing.Point(12, 263);
|
|||
|
this.lblInfo.Name = "lblInfo";
|
|||
|
this.lblInfo.Size = new System.Drawing.Size(0, 12);
|
|||
|
this.lblInfo.TabIndex = 15;
|
|||
|
//
|
|||
|
// formAddMessage
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(301, 293);
|
|||
|
this.Controls.Add(this.lblInfo);
|
|||
|
this.Controls.Add(this.txtMessageData7);
|
|||
|
this.Controls.Add(this.txtMessageData6);
|
|||
|
this.Controls.Add(this.txtMessageData5);
|
|||
|
this.Controls.Add(this.txtMessageData4);
|
|||
|
this.Controls.Add(this.txtMessageData3);
|
|||
|
this.Controls.Add(this.txtMessageData2);
|
|||
|
this.Controls.Add(this.txtMessageData1);
|
|||
|
this.Controls.Add(this.btnCancel);
|
|||
|
this.Controls.Add(this.btnOk);
|
|||
|
this.Controls.Add(this.txtMessageData0);
|
|||
|
this.Controls.Add(this.txtMessageLen);
|
|||
|
this.Controls.Add(this.txtMessageId);
|
|||
|
this.Controls.Add(this.label3);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|||
|
this.Name = "formAddMessage";
|
|||
|
this.Text = "添加报文";
|
|||
|
this.Load += new System.EventHandler(this.formAddMessage_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.Label label3;
|
|||
|
private System.Windows.Forms.TextBox txtMessageId;
|
|||
|
private System.Windows.Forms.TextBox txtMessageLen;
|
|||
|
private System.Windows.Forms.TextBox txtMessageData0;
|
|||
|
private System.Windows.Forms.Button btnOk;
|
|||
|
private System.Windows.Forms.Button btnCancel;
|
|||
|
private System.Windows.Forms.TextBox txtMessageData1;
|
|||
|
private System.Windows.Forms.TextBox txtMessageData2;
|
|||
|
private System.Windows.Forms.TextBox txtMessageData3;
|
|||
|
private System.Windows.Forms.TextBox txtMessageData4;
|
|||
|
private System.Windows.Forms.TextBox txtMessageData5;
|
|||
|
private System.Windows.Forms.TextBox txtMessageData6;
|
|||
|
private System.Windows.Forms.TextBox txtMessageData7;
|
|||
|
private System.Windows.Forms.Label lblInfo;
|
|||
|
}
|
|||
|
}
|