Files
cms_thermo_active/Thermo.Cam.Setup/DiscoveryForm.Designer.cs
T
2021-02-18 19:11:43 +01:00

124 lines
5.7 KiB
C#

namespace Thermo.Cam.Setup
{
partial class DiscoveryForm
{
/// <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.components = new System.ComponentModel.Container();
this.buttonSelect = new System.Windows.Forms.Button();
this.listViewDevices = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.timerAutoconnect = new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// buttonSelect
//
this.buttonSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonSelect.DialogResult = System.Windows.Forms.DialogResult.OK;
this.buttonSelect.Enabled = false;
this.buttonSelect.Location = new System.Drawing.Point(561, 231);
this.buttonSelect.Name = "buttonSelect";
this.buttonSelect.Size = new System.Drawing.Size(75, 23);
this.buttonSelect.TabIndex = 5;
this.buttonSelect.Text = "Select";
this.buttonSelect.UseVisualStyleBackColor = true;
this.buttonSelect.Click += new System.EventHandler(this.buttonSelect_Click);
//
// listViewDevices
//
this.listViewDevices.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listViewDevices.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader4,
this.columnHeader3});
this.listViewDevices.HideSelection = false;
this.listViewDevices.Location = new System.Drawing.Point(12, 12);
this.listViewDevices.Name = "listViewDevices";
this.listViewDevices.Size = new System.Drawing.Size(624, 213);
this.listViewDevices.TabIndex = 4;
this.listViewDevices.UseCompatibleStateImageBehavior = false;
this.listViewDevices.View = System.Windows.Forms.View.Details;
this.listViewDevices.SelectedIndexChanged += new System.EventHandler(this.listViewDevices_SelectedIndexChanged);
this.listViewDevices.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listViewDevices_MouseDoubleClick);
//
// columnHeader1
//
this.columnHeader1.Text = "Name";
this.columnHeader1.Width = 227;
//
// columnHeader2
//
this.columnHeader2.Text = "IP Address";
this.columnHeader2.Width = 149;
//
// columnHeader4
//
this.columnHeader4.Text = "WiFi";
//
// columnHeader3
//
this.columnHeader3.Text = "Streaming";
this.columnHeader3.Width = 168;
//
// timerAutoconnect
//
this.timerAutoconnect.Interval = 1000;
this.timerAutoconnect.Tick += new System.EventHandler(this.timerAutoconnect_Tick);
//
// DiscoveryForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(648, 261);
this.Controls.Add(this.buttonSelect);
this.Controls.Add(this.listViewDevices);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Name = "DiscoveryForm";
this.Text = "Discovery";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DiscoveryForm_FormClosing);
this.Load += new System.EventHandler(this.DiscoveryForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonSelect;
private System.Windows.Forms.ListView listViewDevices;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader4;
private System.Windows.Forms.ColumnHeader columnHeader3;
private System.Windows.Forms.Timer timerAutoconnect;
}
}