3 Star 3 Fork 3

BaiWolf / TFP3-8051-miniGUI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Form1.Designer.cs 13.86 KB
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
BaiWolf 提交于 2019-09-25 14:37 . 第一次提交
namespace SerialportSample
{
partial class FormMain
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
this.checkBoxHexView = new System.Windows.Forms.CheckBox();
this.labelGetCount = new System.Windows.Forms.Label();
this.checkBoxNewlineGet = new System.Windows.Forms.CheckBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txGet = new System.Windows.Forms.TextBox();
this.comboPortName = new System.Windows.Forms.ComboBox();
this.buttonSendFile = new System.Windows.Forms.Button();
this.buttonOpenClose = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.comboBoxDUTSize = new System.Windows.Forms.ComboBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox4.SuspendLayout();
this.SuspendLayout();
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// checkBoxHexView
//
this.checkBoxHexView.AutoSize = true;
this.checkBoxHexView.Checked = true;
this.checkBoxHexView.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBoxHexView.Location = new System.Drawing.Point(158, 0);
this.checkBoxHexView.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.checkBoxHexView.Name = "checkBoxHexView";
this.checkBoxHexView.Size = new System.Drawing.Size(70, 29);
this.checkBoxHexView.TabIndex = 7;
this.checkBoxHexView.Text = "Hex";
this.checkBoxHexView.UseVisualStyleBackColor = true;
this.checkBoxHexView.Visible = false;
//
// labelGetCount
//
this.labelGetCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelGetCount.AutoSize = true;
this.labelGetCount.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.labelGetCount.Location = new System.Drawing.Point(553, 8);
this.labelGetCount.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.labelGetCount.Name = "labelGetCount";
this.labelGetCount.Size = new System.Drawing.Size(60, 25);
this.labelGetCount.TabIndex = 9;
this.labelGetCount.Text = "Get:0";
//
// checkBoxNewlineGet
//
this.checkBoxNewlineGet.AutoSize = true;
this.checkBoxNewlineGet.Location = new System.Drawing.Point(241, 0);
this.checkBoxNewlineGet.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.checkBoxNewlineGet.Name = "checkBoxNewlineGet";
this.checkBoxNewlineGet.Size = new System.Drawing.Size(155, 29);
this.checkBoxNewlineGet.TabIndex = 8;
this.checkBoxNewlineGet.Text = "Auto newline";
this.checkBoxNewlineGet.UseVisualStyleBackColor = true;
this.checkBoxNewlineGet.Visible = false;
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.txGet);
this.groupBox1.Controls.Add(this.checkBoxNewlineGet);
this.groupBox1.Controls.Add(this.labelGetCount);
this.groupBox1.Controls.Add(this.checkBoxHexView);
this.groupBox1.Location = new System.Drawing.Point(7, 5);
this.groupBox1.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.groupBox1.Size = new System.Drawing.Size(678, 533);
this.groupBox1.TabIndex = 6;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "DataReceived ";
//
// txGet
//
this.txGet.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txGet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txGet.Location = new System.Drawing.Point(12, 35);
this.txGet.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.txGet.Multiline = true;
this.txGet.Name = "txGet";
this.txGet.ReadOnly = true;
this.txGet.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txGet.Size = new System.Drawing.Size(654, 489);
this.txGet.TabIndex = 0;
this.txGet.Text = "Wellcome to use TFP3miniGUI v1.0.1\r\nPls follow the right steps1~3 to load Hex cod" +
"e\r\nissue report to :4876887(QQ)\r\n\r\n";
//
// comboPortName
//
this.comboPortName.BackColor = System.Drawing.Color.White;
this.comboPortName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboPortName.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.comboPortName.FormattingEnabled = true;
this.comboPortName.Location = new System.Drawing.Point(44, 43);
this.comboPortName.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.comboPortName.Name = "comboPortName";
this.comboPortName.Size = new System.Drawing.Size(139, 32);
this.comboPortName.TabIndex = 4;
//
// buttonSendFile
//
this.buttonSendFile.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.buttonSendFile.Location = new System.Drawing.Point(121, 52);
this.buttonSendFile.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.buttonSendFile.Name = "buttonSendFile";
this.buttonSendFile.Size = new System.Drawing.Size(177, 45);
this.buttonSendFile.TabIndex = 2;
this.buttonSendFile.Text = "Load New code";
this.buttonSendFile.UseVisualStyleBackColor = true;
this.buttonSendFile.Click += new System.EventHandler(this.buttonSendFile_Click);
//
// buttonOpenClose
//
this.buttonOpenClose.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.buttonOpenClose.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.buttonOpenClose.ForeColor = System.Drawing.Color.Black;
this.buttonOpenClose.Location = new System.Drawing.Point(223, 35);
this.buttonOpenClose.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.buttonOpenClose.Name = "buttonOpenClose";
this.buttonOpenClose.Size = new System.Drawing.Size(133, 46);
this.buttonOpenClose.TabIndex = 0;
this.buttonOpenClose.Text = "ScanDev";
this.buttonOpenClose.UseVisualStyleBackColor = true;
this.buttonOpenClose.Click += new System.EventHandler(this.buttonOpenClose_Click);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.comboBoxDUTSize);
this.groupBox2.Location = new System.Drawing.Point(697, 194);
this.groupBox2.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Padding = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.groupBox2.Size = new System.Drawing.Size(425, 94);
this.groupBox2.TabIndex = 13;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Step2 --- chose DUT size";
//
// comboBoxDUTSize
//
this.comboBoxDUTSize.BackColor = System.Drawing.Color.White;
this.comboBoxDUTSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxDUTSize.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.comboBoxDUTSize.FormattingEnabled = true;
this.comboBoxDUTSize.Items.AddRange(new object[] {
"16K",
"32K",
"64K",
"128K",
"256k"});
this.comboBoxDUTSize.Location = new System.Drawing.Point(44, 35);
this.comboBoxDUTSize.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.comboBoxDUTSize.Name = "comboBoxDUTSize";
this.comboBoxDUTSize.Size = new System.Drawing.Size(139, 32);
this.comboBoxDUTSize.TabIndex = 14;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.buttonSendFile);
this.groupBox3.Location = new System.Drawing.Point(697, 320);
this.groupBox3.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Padding = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.groupBox3.Size = new System.Drawing.Size(425, 122);
this.groupBox3.TabIndex = 12;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Step3 --- to load a new hex";
//
// groupBox4
//
this.groupBox4.Controls.Add(this.comboPortName);
this.groupBox4.Controls.Add(this.buttonOpenClose);
this.groupBox4.Location = new System.Drawing.Point(697, 40);
this.groupBox4.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Padding = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.groupBox4.Size = new System.Drawing.Size(425, 117);
this.groupBox4.TabIndex = 11;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "Step1 --- chose dev port";
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1132, 543);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox1);
this.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.MaximizeBox = false;
this.Name = "FormMain";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "TFP3-8051 miniGUI-V1.0.1";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
this.Load += new System.EventHandler(this.Form1_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.groupBox4.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.ComponentModel.BackgroundWorker backgroundWorker1;
private System.Windows.Forms.CheckBox checkBoxHexView;
private System.Windows.Forms.Label labelGetCount;
private System.Windows.Forms.CheckBox checkBoxNewlineGet;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox txGet;
private System.Windows.Forms.ComboBox comboPortName;
private System.Windows.Forms.Button buttonSendFile;
private System.Windows.Forms.Button buttonOpenClose;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.ComboBox comboBoxDUTSize;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.GroupBox groupBox4;
}
}
C#
1
https://gitee.com/guanjw/TFP3-8051-miniGUI.git
git@gitee.com:guanjw/TFP3-8051-miniGUI.git
guanjw
TFP3-8051-miniGUI
TFP3-8051-miniGUI
master

搜索帮助