common/Ui/GenesisToolBox/FrmCustomerText.Designer.cs
2026-04-23 17:50:07 +02:00

122 lines
4.7 KiB
C#

namespace Xylem.Common.Ui.GenesisToolBox
{
partial class FrmCustomerText
{
/// <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.btnConnect = new System.Windows.Forms.Button();
this.cbComSlot = new System.Windows.Forms.ComboBox();
this.btnRead = new System.Windows.Forms.Button();
this.btnWriteText = new System.Windows.Forms.Button();
this.rtbCustomerText = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// btnConnect
//
this.btnConnect.Location = new System.Drawing.Point(122, 6);
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(85, 30);
this.btnConnect.TabIndex = 6;
this.btnConnect.Text = "Connect";
this.btnConnect.UseVisualStyleBackColor = true;
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
//
// cbComSlot
//
this.cbComSlot.FormattingEnabled = true;
this.cbComSlot.Items.AddRange(new object[] {
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"});
this.cbComSlot.Location = new System.Drawing.Point(12, 12);
this.cbComSlot.Name = "cbComSlot";
this.cbComSlot.Size = new System.Drawing.Size(104, 21);
this.cbComSlot.TabIndex = 5;
this.cbComSlot.Text = "1";
//
// btnRead
//
this.btnRead.Location = new System.Drawing.Point(233, 6);
this.btnRead.Name = "btnRead";
this.btnRead.Size = new System.Drawing.Size(85, 30);
this.btnRead.TabIndex = 7;
this.btnRead.Text = "Read";
this.btnRead.UseVisualStyleBackColor = true;
this.btnRead.Click += new System.EventHandler(this.btnRead_Click);
//
// btnWriteText
//
this.btnWriteText.Location = new System.Drawing.Point(324, 6);
this.btnWriteText.Name = "btnWriteText";
this.btnWriteText.Size = new System.Drawing.Size(85, 30);
this.btnWriteText.TabIndex = 8;
this.btnWriteText.Text = "Write";
this.btnWriteText.UseVisualStyleBackColor = true;
this.btnWriteText.Click += new System.EventHandler(this.btnWriteText_Click);
//
// rtbCustomerText
//
this.rtbCustomerText.Location = new System.Drawing.Point(14, 45);
this.rtbCustomerText.Name = "rtbCustomerText";
this.rtbCustomerText.Size = new System.Drawing.Size(394, 173);
this.rtbCustomerText.TabIndex = 9;
this.rtbCustomerText.Text = "";
//
// FrmCustomerText
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(421, 237);
this.Controls.Add(this.rtbCustomerText);
this.Controls.Add(this.btnWriteText);
this.Controls.Add(this.btnRead);
this.Controls.Add(this.btnConnect);
this.Controls.Add(this.cbComSlot);
this.Name = "FrmCustomerText";
this.Text = "Customer Text";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmAlarmMng_FormClosing);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnConnect;
private System.Windows.Forms.ComboBox cbComSlot;
private System.Windows.Forms.Button btnRead;
private System.Windows.Forms.Button btnWrite;
private System.Windows.Forms.Button btnWriteText;
private System.Windows.Forms.RichTextBox rtbCustomerText;
}
}