/*
* Erstellt mit SharpDevelop.
* Benutzer: 001142709
* Datum: 17.04.2018
* Zeit: 14:32
*
* Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern.
*/
namespace NxLizenz
{
partial class UserView
{
///
/// Designer variable used to keep track of non-visual components.
///
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.DataGridView dataGridViewUser;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnName;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnID;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnComputername;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnSurname;
///
/// Disposes resources used by the form.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
///
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
///
private void InitializeComponent()
{
this.dataGridViewUser = new System.Windows.Forms.DataGridView();
this.ColumnName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnSurname = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnComputername = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewUser)).BeginInit();
this.SuspendLayout();
//
// dataGridViewUser
//
this.dataGridViewUser.AllowUserToAddRows = false;
this.dataGridViewUser.AllowUserToDeleteRows = false;
this.dataGridViewUser.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
this.dataGridViewUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ColumnName,
this.ColumnSurname,
this.ColumnID,
this.ColumnComputername});
this.dataGridViewUser.Location = new System.Drawing.Point(12, 12);
this.dataGridViewUser.Name = "dataGridViewUser";
this.dataGridViewUser.ReadOnly = true;
this.dataGridViewUser.Size = new System.Drawing.Size(608, 545);
this.dataGridViewUser.TabIndex = 0;
//
// ColumnName
//
this.ColumnName.HeaderText = "First Name";
this.ColumnName.Name = "ColumnName";
this.ColumnName.ReadOnly = true;
this.ColumnName.Width = 130;
//
// ColumnSurname
//
this.ColumnSurname.HeaderText = "Surname";
this.ColumnSurname.Name = "ColumnSurname";
this.ColumnSurname.ReadOnly = true;
this.ColumnSurname.Width = 130;
//
// ColumnID
//
this.ColumnID.HeaderText = "ID Number";
this.ColumnID.Name = "ColumnID";
this.ColumnID.ReadOnly = true;
this.ColumnID.Width = 140;
//
// ColumnComputername
//
this.ColumnComputername.HeaderText = "Computer Name";
this.ColumnComputername.Name = "ColumnComputername";
this.ColumnComputername.ReadOnly = true;
this.ColumnComputername.Width = 140;
//
// UserView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(632, 569);
this.Controls.Add(this.dataGridViewUser);
this.MaximumSize = new System.Drawing.Size(680, 600);
this.Name = "UserView";
this.Text = "User List";
((System.ComponentModel.ISupportInitialize)(this.dataGridViewUser)).EndInit();
this.ResumeLayout(false);
}
}
}