138 lines
5.1 KiB
C#
138 lines
5.1 KiB
C#
namespace PainoBar_Helper
|
|
{
|
|
partial class StationForm
|
|
{
|
|
/// <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()
|
|
{
|
|
station_list_group_box = new GroupBox();
|
|
ok_button = new Button();
|
|
btnCancelStation = new Button();
|
|
terminal_box = new RichTextBox();
|
|
input_label = new Label();
|
|
command_input_box = new TextBox();
|
|
submit_button = new Button();
|
|
station_list_group_box.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// station_list_group_box
|
|
//
|
|
station_list_group_box.Controls.Add(submit_button);
|
|
station_list_group_box.Controls.Add(command_input_box);
|
|
station_list_group_box.Controls.Add(input_label);
|
|
station_list_group_box.Controls.Add(terminal_box);
|
|
station_list_group_box.Location = new Point(12, 22);
|
|
station_list_group_box.Name = "station_list_group_box";
|
|
station_list_group_box.Size = new Size(584, 333);
|
|
station_list_group_box.TabIndex = 0;
|
|
station_list_group_box.TabStop = false;
|
|
station_list_group_box.Text = "Terminal window";
|
|
//
|
|
// ok_button
|
|
//
|
|
ok_button.Location = new Point(29, 389);
|
|
ok_button.Name = "ok_button";
|
|
ok_button.Size = new Size(117, 23);
|
|
ok_button.TabIndex = 2;
|
|
ok_button.Text = "Ok";
|
|
ok_button.UseVisualStyleBackColor = true;
|
|
ok_button.Click += btnSelectStation_Click;
|
|
//
|
|
// btnCancelStation
|
|
//
|
|
btnCancelStation.Location = new Point(521, 389);
|
|
btnCancelStation.Name = "btnCancelStation";
|
|
btnCancelStation.Size = new Size(86, 23);
|
|
btnCancelStation.TabIndex = 3;
|
|
btnCancelStation.Text = "Cancel";
|
|
btnCancelStation.UseVisualStyleBackColor = true;
|
|
btnCancelStation.Click += btnCancelStation_Click;
|
|
//
|
|
// terminal_box
|
|
//
|
|
terminal_box.BackColor = SystemColors.MenuText;
|
|
terminal_box.ForeColor = SystemColors.Window;
|
|
terminal_box.Location = new Point(17, 35);
|
|
terminal_box.Name = "terminal_box";
|
|
terminal_box.ReadOnly = true;
|
|
terminal_box.Size = new Size(551, 231);
|
|
terminal_box.TabIndex = 0;
|
|
terminal_box.Text = "";
|
|
//
|
|
// input_label
|
|
//
|
|
input_label.AutoSize = true;
|
|
input_label.Location = new Point(28, 294);
|
|
input_label.Name = "input_label";
|
|
input_label.Size = new Size(59, 17);
|
|
input_label.TabIndex = 1;
|
|
input_label.Text = "Command:";
|
|
//
|
|
// command_input_box
|
|
//
|
|
command_input_box.Location = new Point(91, 290);
|
|
command_input_box.Name = "command_input_box";
|
|
command_input_box.Size = new Size(244, 24);
|
|
command_input_box.TabIndex = 2;
|
|
//
|
|
// submit_button
|
|
//
|
|
submit_button.Location = new Point(449, 290);
|
|
submit_button.Name = "submit_button";
|
|
submit_button.Size = new Size(75, 23);
|
|
submit_button.TabIndex = 3;
|
|
submit_button.Text = "Submit";
|
|
submit_button.UseVisualStyleBackColor = true;
|
|
submit_button.Click += submit_button_Click;
|
|
//
|
|
// StationForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 17F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(631, 434);
|
|
Controls.Add(btnCancelStation);
|
|
Controls.Add(ok_button);
|
|
Controls.Add(station_list_group_box);
|
|
Name = "StationForm";
|
|
Text = "StationForm";
|
|
station_list_group_box.ResumeLayout(false);
|
|
station_list_group_box.PerformLayout();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private GroupBox station_list_group_box;
|
|
private Button refresh_button;
|
|
private Button ok_button;
|
|
private Button btnCancelStation;
|
|
private RichTextBox terminal_box;
|
|
private Button submit_button;
|
|
private TextBox command_input_box;
|
|
private Label input_label;
|
|
}
|
|
}
|