Files
limanapp/EgwControlCenter/TargetSetup.Designer.cs
T
2024-09-19 16:50:11 +02:00

114 lines
4.2 KiB
C#

namespace EgwControlCenter
{
partial class TargetSetup
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TargetSetup));
dgView = new DataGridView();
btnReload = new Button();
btnSave = new Button();
statusStrip1 = new StatusStrip();
tsLabelOut = new ToolStripStatusLabel();
((System.ComponentModel.ISupportInitialize)dgView).BeginInit();
statusStrip1.SuspendLayout();
SuspendLayout();
//
// dgView
//
dgView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
dgView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
dgView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dgView.Location = new Point(11, 35);
dgView.Name = "dgView";
dgView.Size = new Size(521, 141);
dgView.TabIndex = 1;
//
// btnReload
//
btnReload.Location = new Point(11, 6);
btnReload.Name = "btnReload";
btnReload.Size = new Size(75, 23);
btnReload.TabIndex = 2;
btnReload.Text = "Cancel";
btnReload.UseVisualStyleBackColor = true;
btnReload.Click += btnReload_Click;
//
// btnSave
//
btnSave.Anchor = AnchorStyles.Top | AnchorStyles.Right;
btnSave.Location = new Point(457, 6);
btnSave.Name = "btnSave";
btnSave.Size = new Size(75, 23);
btnSave.TabIndex = 3;
btnSave.Text = "Save";
btnSave.UseVisualStyleBackColor = true;
btnSave.Click += btnSave_Click;
//
// statusStrip1
//
statusStrip1.Items.AddRange(new ToolStripItem[] { tsLabelOut });
statusStrip1.Location = new Point(0, 179);
statusStrip1.Name = "statusStrip1";
statusStrip1.Size = new Size(544, 22);
statusStrip1.TabIndex = 4;
statusStrip1.Text = "statusStrip1";
//
// tsLabelOut
//
tsLabelOut.Name = "tsLabelOut";
tsLabelOut.Size = new Size(16, 17);
tsLabelOut.Text = "...";
//
// TargetSetup
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(544, 201);
Controls.Add(statusStrip1);
Controls.Add(btnSave);
Controls.Add(btnReload);
Controls.Add(dgView);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "TargetSetup";
Text = "Setup Applicazioni Monitorate";
Load += TargetSetup_Load;
((System.ComponentModel.ISupportInitialize)dgView).EndInit();
statusStrip1.ResumeLayout(false);
statusStrip1.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private DataGridView dgView;
private Button btnReload;
private Button btnSave;
private StatusStrip statusStrip1;
private ToolStripStatusLabel tsLabelOut;
}
}