11bb5b742e
- move progetti core di MTC in net8 a scratch (da rivedere...)
112 lines
3.5 KiB
C#
112 lines
3.5 KiB
C#
namespace IOB_WIN_MTC
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <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();
|
|
lblOut = new Label();
|
|
panel1 = new Panel();
|
|
button2 = new Button();
|
|
button3 = new Button();
|
|
panel1.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// button1
|
|
//
|
|
button1.Location = new Point(24, 44);
|
|
button1.Name = "button1";
|
|
button1.Size = new Size(75, 23);
|
|
button1.TabIndex = 0;
|
|
button1.Text = "probe";
|
|
button1.UseVisualStyleBackColor = true;
|
|
button1.Click += button1_Click;
|
|
//
|
|
// lblOut
|
|
//
|
|
lblOut.AutoEllipsis = true;
|
|
lblOut.AutoSize = true;
|
|
lblOut.Dock = DockStyle.Fill;
|
|
lblOut.Location = new Point(0, 0);
|
|
lblOut.Name = "lblOut";
|
|
lblOut.Size = new Size(157, 15);
|
|
lblOut.TabIndex = 1;
|
|
lblOut.Text = "------------------------------";
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.Controls.Add(lblOut);
|
|
panel1.Location = new Point(112, 34);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(676, 710);
|
|
panel1.TabIndex = 2;
|
|
//
|
|
// button2
|
|
//
|
|
button2.Location = new Point(24, 86);
|
|
button2.Name = "button2";
|
|
button2.Size = new Size(75, 23);
|
|
button2.TabIndex = 3;
|
|
button2.Text = "start";
|
|
button2.UseVisualStyleBackColor = true;
|
|
button2.Click += button2_Click;
|
|
//
|
|
// button3
|
|
//
|
|
button3.Location = new Point(24, 128);
|
|
button3.Name = "button3";
|
|
button3.Size = new Size(75, 23);
|
|
button3.TabIndex = 4;
|
|
button3.Text = "stop";
|
|
button3.UseVisualStyleBackColor = true;
|
|
button3.Click += button3_Click;
|
|
//
|
|
// MainForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 756);
|
|
Controls.Add(button3);
|
|
Controls.Add(button2);
|
|
Controls.Add(panel1);
|
|
Controls.Add(button1);
|
|
Name = "MainForm";
|
|
Text = "Main";
|
|
panel1.ResumeLayout(false);
|
|
panel1.PerformLayout();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button button1;
|
|
private Label lblOut;
|
|
private Panel panel1;
|
|
private Button button2;
|
|
private Button button3;
|
|
}
|
|
} |