mirror of
https://github.com/XGudron/UA3REO-DDC-Transceiver.git
synced 2025-08-08 01:00:35 +03:00
135 lines
5.7 KiB
C#
135 lines
5.7 KiB
C#
namespace UA3REO_WIFIClient
|
||
{
|
||
partial class mainForm
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором форм Windows
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.label3 = new System.Windows.Forms.Label();
|
||
this.connectButton = new System.Windows.Forms.Button();
|
||
this.label4 = new System.Windows.Forms.Label();
|
||
this.statusLabel = new System.Windows.Forms.Label();
|
||
this.portComboBox = new System.Windows.Forms.ComboBox();
|
||
this.addressTextBox = new System.Windows.Forms.TextBox();
|
||
this.SuspendLayout();
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(12, 9);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(62, 13);
|
||
this.label1.TabIndex = 0;
|
||
this.label1.Text = "COM Порт:";
|
||
//
|
||
// label3
|
||
//
|
||
this.label3.AutoSize = true;
|
||
this.label3.Location = new System.Drawing.Point(151, 9);
|
||
this.label3.Name = "label3";
|
||
this.label3.Size = new System.Drawing.Size(115, 13);
|
||
this.label3.TabIndex = 2;
|
||
this.label3.Text = "IP-адрес трансивера:";
|
||
//
|
||
// connectButton
|
||
//
|
||
this.connectButton.Location = new System.Drawing.Point(283, 24);
|
||
this.connectButton.Name = "connectButton";
|
||
this.connectButton.Size = new System.Drawing.Size(85, 23);
|
||
this.connectButton.TabIndex = 3;
|
||
this.connectButton.Text = "Соединиться";
|
||
this.connectButton.UseVisualStyleBackColor = true;
|
||
this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
|
||
//
|
||
// label4
|
||
//
|
||
this.label4.AutoSize = true;
|
||
this.label4.Location = new System.Drawing.Point(12, 60);
|
||
this.label4.Name = "label4";
|
||
this.label4.Size = new System.Drawing.Size(44, 13);
|
||
this.label4.TabIndex = 4;
|
||
this.label4.Text = "Статус:";
|
||
//
|
||
// statusLabel
|
||
//
|
||
this.statusLabel.AutoSize = true;
|
||
this.statusLabel.Location = new System.Drawing.Point(12, 73);
|
||
this.statusLabel.Name = "statusLabel";
|
||
this.statusLabel.Size = new System.Drawing.Size(10, 13);
|
||
this.statusLabel.TabIndex = 5;
|
||
this.statusLabel.Text = "-";
|
||
//
|
||
// portComboBox
|
||
//
|
||
this.portComboBox.FormattingEnabled = true;
|
||
this.portComboBox.Location = new System.Drawing.Point(12, 26);
|
||
this.portComboBox.Name = "portComboBox";
|
||
this.portComboBox.Size = new System.Drawing.Size(121, 21);
|
||
this.portComboBox.TabIndex = 6;
|
||
this.portComboBox.DropDown += new System.EventHandler(this.portComboBox_DropDown);
|
||
//
|
||
// addressTextBox
|
||
//
|
||
this.addressTextBox.Location = new System.Drawing.Point(154, 27);
|
||
this.addressTextBox.Name = "addressTextBox";
|
||
this.addressTextBox.Size = new System.Drawing.Size(123, 20);
|
||
this.addressTextBox.TabIndex = 7;
|
||
//
|
||
// mainForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(386, 98);
|
||
this.Controls.Add(this.addressTextBox);
|
||
this.Controls.Add(this.portComboBox);
|
||
this.Controls.Add(this.statusLabel);
|
||
this.Controls.Add(this.label4);
|
||
this.Controls.Add(this.connectButton);
|
||
this.Controls.Add(this.label3);
|
||
this.Controls.Add(this.label1);
|
||
this.Name = "mainForm";
|
||
this.Text = "UA3REO Transceiver Client";
|
||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.mainForm_FormClosing);
|
||
this.Load += new System.EventHandler(this.mainForm_Load);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label label3;
|
||
private System.Windows.Forms.Button connectButton;
|
||
private System.Windows.Forms.Label label4;
|
||
private System.Windows.Forms.Label statusLabel;
|
||
private System.Windows.Forms.ComboBox portComboBox;
|
||
private System.Windows.Forms.TextBox addressTextBox;
|
||
}
|
||
}
|
||
|