124 lines
5.4 KiB
C#
124 lines
5.4 KiB
C#
namespace XylemCommonUiLegacyGenCtl
|
|
{
|
|
partial class ctlAutoDetect
|
|
{
|
|
/// <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 Component 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.dgvDetect = new System.Windows.Forms.DataGridView();
|
|
this.btnSearch = new System.Windows.Forms.Button();
|
|
this.btnTake = new System.Windows.Forms.Button();
|
|
this.cSlot = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.cStatus = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvDetect)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dgvDetect
|
|
//
|
|
this.dgvDetect.AllowUserToAddRows = false;
|
|
this.dgvDetect.AllowUserToDeleteRows = false;
|
|
this.dgvDetect.AllowUserToResizeColumns = false;
|
|
this.dgvDetect.AllowUserToResizeRows = false;
|
|
this.dgvDetect.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
|
|
this.dgvDetect.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders;
|
|
this.dgvDetect.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvDetect.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.cSlot,
|
|
this.cStatus});
|
|
this.dgvDetect.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
|
|
this.dgvDetect.Enabled = false;
|
|
this.dgvDetect.Location = new System.Drawing.Point(3, 61);
|
|
this.dgvDetect.Name = "dgvDetect";
|
|
this.dgvDetect.ReadOnly = true;
|
|
this.dgvDetect.RowHeadersVisible = false;
|
|
this.dgvDetect.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
|
|
this.dgvDetect.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
|
|
this.dgvDetect.ShowCellErrors = false;
|
|
this.dgvDetect.Size = new System.Drawing.Size(260, 241);
|
|
this.dgvDetect.TabIndex = 0;
|
|
this.dgvDetect.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDetect_CellContentClick);
|
|
//
|
|
// btnSearch
|
|
//
|
|
this.btnSearch.Location = new System.Drawing.Point(3, 3);
|
|
this.btnSearch.Name = "btnSearch";
|
|
this.btnSearch.Size = new System.Drawing.Size(256, 23);
|
|
this.btnSearch.TabIndex = 1;
|
|
this.btnSearch.Text = "Suchen";
|
|
this.btnSearch.UseVisualStyleBackColor = true;
|
|
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
|
|
//
|
|
// btnTake
|
|
//
|
|
this.btnTake.Location = new System.Drawing.Point(3, 32);
|
|
this.btnTake.Name = "btnTake";
|
|
this.btnTake.Size = new System.Drawing.Size(256, 23);
|
|
this.btnTake.TabIndex = 2;
|
|
this.btnTake.Text = "Übernehmen";
|
|
this.btnTake.UseVisualStyleBackColor = true;
|
|
this.btnTake.Click += new System.EventHandler(this.btnTake_Click);
|
|
//
|
|
// cSlot
|
|
//
|
|
this.cSlot.Frozen = true;
|
|
this.cSlot.HeaderText = "Slot";
|
|
this.cSlot.Name = "cSlot";
|
|
this.cSlot.ReadOnly = true;
|
|
this.cSlot.Width = 50;
|
|
//
|
|
// cStatus
|
|
//
|
|
this.cStatus.Frozen = true;
|
|
this.cStatus.HeaderText = "Status";
|
|
this.cStatus.Name = "cStatus";
|
|
this.cStatus.ReadOnly = true;
|
|
this.cStatus.Width = 62;
|
|
//
|
|
// ctlAutoDetect
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.btnTake);
|
|
this.Controls.Add(this.btnSearch);
|
|
this.Controls.Add(this.dgvDetect);
|
|
this.Name = "ctlAutoDetect";
|
|
this.Size = new System.Drawing.Size(267, 305);
|
|
this.Load += new System.EventHandler(this.ctlAutoDetect_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvDetect)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dgvDetect;
|
|
private System.Windows.Forms.Button btnSearch;
|
|
private System.Windows.Forms.Button btnTake;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn cSlot;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn cStatus;
|
|
}
|
|
}
|