1 Star 1 Fork 0

pear2007/rs485

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Form1.Designer.cs 7.90 KB
一键复制 编辑 原始数据 按行查看 历史
pear2007 提交于 2024-07-15 10:23 . first commit
namespace cs01
{
partial class Form1
{
/// <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()
{
button1 = new Button();
button2 = new Button();
textBox1 = new TextBox();
textBox2 = new TextBox();
button3 = new Button();
button4 = new Button();
button5 = new Button();
button6 = new Button();
button7 = new Button();
button8 = new Button();
label1 = new Label();
label2 = new Label();
label3 = new Label();
label4 = new Label();
button9 = new Button();
button10 = new Button();
SuspendLayout();
//
// button1
//
button1.Location = new Point(91, 165);
button1.Name = "button1";
button1.Size = new Size(75, 23);
button1.TabIndex = 0;
button1.Text = "打开1";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// button2
//
button2.Location = new Point(225, 165);
button2.Name = "button2";
button2.Size = new Size(75, 23);
button2.TabIndex = 0;
button2.Text = "关闭1";
button2.UseVisualStyleBackColor = true;
button2.Click += button2_Click;
//
// textBox1
//
textBox1.Location = new Point(91, 12);
textBox1.Name = "textBox1";
textBox1.Size = new Size(100, 23);
textBox1.TabIndex = 1;
//
// textBox2
//
textBox2.Location = new Point(225, 12);
textBox2.Name = "textBox2";
textBox2.Size = new Size(100, 23);
textBox2.TabIndex = 2;
//
// button3
//
button3.Location = new Point(91, 241);
button3.Name = "button3";
button3.Size = new Size(75, 23);
button3.TabIndex = 3;
button3.Text = "打开2";
button3.UseVisualStyleBackColor = true;
button3.Click += button3_Click;
//
// button4
//
button4.Location = new Point(225, 241);
button4.Name = "button4";
button4.Size = new Size(75, 23);
button4.TabIndex = 4;
button4.Text = "关闭2";
button4.UseVisualStyleBackColor = true;
button4.Click += button4_Click;
//
// button5
//
button5.Location = new Point(91, 307);
button5.Name = "button5";
button5.Size = new Size(75, 23);
button5.TabIndex = 5;
button5.Text = "打开3";
button5.UseVisualStyleBackColor = true;
button5.Click += button5_Click_1;
//
// button6
//
button6.Location = new Point(225, 307);
button6.Name = "button6";
button6.Size = new Size(75, 23);
button6.TabIndex = 6;
button6.Text = "关闭3";
button6.UseVisualStyleBackColor = true;
button6.Click += button6_Click;
//
// button7
//
button7.Location = new Point(91, 370);
button7.Name = "button7";
button7.Size = new Size(75, 23);
button7.TabIndex = 7;
button7.Text = "打开4";
button7.UseVisualStyleBackColor = true;
button7.Click += button7_Click_1;
//
// button8
//
button8.Location = new Point(225, 370);
button8.Name = "button8";
button8.Size = new Size(75, 23);
button8.TabIndex = 8;
button8.Text = "关闭4";
button8.UseVisualStyleBackColor = true;
button8.Click += button8_Click;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(348, 165);
label1.Name = "label1";
label1.Size = new Size(0, 17);
label1.TabIndex = 9;
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(348, 241);
label2.Name = "label2";
label2.Size = new Size(0, 17);
label2.TabIndex = 10;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(348, 307);
label3.Name = "label3";
label3.Size = new Size(0, 17);
label3.TabIndex = 11;
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(348, 373);
label4.Name = "label4";
label4.Size = new Size(0, 17);
label4.TabIndex = 12;
//
// button9
//
button9.Location = new Point(499, 230);
button9.Name = "button9";
button9.Size = new Size(101, 44);
button9.TabIndex = 13;
button9.Text = "全开";
button9.UseVisualStyleBackColor = true;
button9.Click += button9_Click;
//
// button10
//
button10.Location = new Point(499, 307);
button10.Name = "button10";
button10.Size = new Size(101, 44);
button10.TabIndex = 14;
button10.Text = "全关";
button10.UseVisualStyleBackColor = true;
button10.Click += button10_Click;
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 17F);
AutoScaleMode = AutoScaleMode.Font;
AutoSize = true;
BackColor = SystemColors.Control;
ClientSize = new Size(800, 450);
Controls.Add(button10);
Controls.Add(button9);
Controls.Add(label4);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(button8);
Controls.Add(button7);
Controls.Add(button6);
Controls.Add(button5);
Controls.Add(button4);
Controls.Add(button3);
Controls.Add(textBox2);
Controls.Add(textBox1);
Controls.Add(button2);
Controls.Add(button1);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private Button button2;
private TextBox textBox1;
private TextBox textBox2;
private Button button3;
private Button button4;
private Button button5;
private Button button6;
private Button button7;
private Button button8;
private Label label1;
private Label label2;
private Label label3;
private Label label4;
private Button button9;
private Button button10;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pear2007/rs485.git
git@gitee.com:pear2007/rs485.git
pear2007
rs485
rs485
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385