namespace it_projekt { partial class GUI { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.loginBtn = new System.Windows.Forms.Button(); this.exportBtn = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.userTxt = new System.Windows.Forms.TextBox(); this.passTxt = new System.Windows.Forms.TextBox(); this.dataGrid = new System.Windows.Forms.DataGridView(); this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.firstname = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.lastname = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Department_Short = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Department = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.creationDate = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.markItem = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.jsonRBtn = new System.Windows.Forms.RadioButton(); this.xmlRBtn = new System.Windows.Forms.RadioButton(); ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).BeginInit(); this.SuspendLayout(); // // loginBtn // this.loginBtn.Location = new System.Drawing.Point(271, 80); this.loginBtn.Name = "loginBtn"; this.loginBtn.Size = new System.Drawing.Size(75, 23); this.loginBtn.TabIndex = 0; this.loginBtn.Text = "Login"; this.loginBtn.UseVisualStyleBackColor = true; this.loginBtn.Click += new System.EventHandler(this.LoadUsersFromTable); // // exportBtn // this.exportBtn.Enabled = false; this.exportBtn.Location = new System.Drawing.Point(480, 80); this.exportBtn.Name = "exportBtn"; this.exportBtn.Size = new System.Drawing.Size(75, 23); this.exportBtn.TabIndex = 1; this.exportBtn.Text = "Exportieren!"; this.exportBtn.UseVisualStyleBackColor = true; this.exportBtn.Click += new System.EventHandler(this.exportBtn_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(31, 58); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(83, 15); this.label1.TabIndex = 2; this.label1.Text = "Benutzername"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(31, 84); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(54, 15); this.label2.TabIndex = 3; this.label2.Text = "Passwort"; // // userTxt // this.userTxt.Location = new System.Drawing.Point(120, 55); this.userTxt.Name = "userTxt"; this.userTxt.Size = new System.Drawing.Size(100, 23); this.userTxt.TabIndex = 4; // // passTxt // this.passTxt.Location = new System.Drawing.Point(120, 80); this.passTxt.Name = "passTxt"; this.passTxt.Size = new System.Drawing.Size(100, 23); this.passTxt.TabIndex = 5; // // dataGrid // this.dataGrid.AllowUserToAddRows = false; this.dataGrid.AllowUserToDeleteRows = false; this.dataGrid.AllowUserToOrderColumns = true; this.dataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.Id, this.firstname, this.lastname, this.Department_Short, this.Department, this.creationDate, this.markItem}); this.dataGrid.Location = new System.Drawing.Point(12, 109); this.dataGrid.Name = "dataGrid"; this.dataGrid.RowTemplate.Height = 25; this.dataGrid.Size = new System.Drawing.Size(743, 225); this.dataGrid.TabIndex = 7; this.dataGrid.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellClick); // // Id // this.Id.HeaderText = "NutzerId"; this.Id.Name = "Id"; this.Id.ReadOnly = true; // // firstname // this.firstname.HeaderText = "Vorname"; this.firstname.Name = "firstname"; this.firstname.ReadOnly = true; // // lastname // this.lastname.HeaderText = "Nachname"; this.lastname.Name = "lastname"; this.lastname.ReadOnly = true; // // Department_Short // this.Department_Short.HeaderText = "Abteilungs Kürzel"; this.Department_Short.Name = "Department_Short"; this.Department_Short.ReadOnly = true; // // Department // this.Department.HeaderText = "Abteilung"; this.Department.Name = "Department"; this.Department.ReadOnly = true; // // creationDate // this.creationDate.HeaderText = "Erstellungssdatum"; this.creationDate.Name = "creationDate"; this.creationDate.ReadOnly = true; // // markItem // this.markItem.HeaderText = "User Auswählen"; this.markItem.Name = "markItem"; // // jsonRBtn // this.jsonRBtn.AutoSize = true; this.jsonRBtn.Checked = true; this.jsonRBtn.Location = new System.Drawing.Point(380, 54); this.jsonRBtn.Name = "jsonRBtn"; this.jsonRBtn.Size = new System.Drawing.Size(53, 19); this.jsonRBtn.TabIndex = 8; this.jsonRBtn.TabStop = true; this.jsonRBtn.Text = "JSON"; this.jsonRBtn.UseVisualStyleBackColor = true; // // xmlRBtn // this.xmlRBtn.AutoSize = true; this.xmlRBtn.Location = new System.Drawing.Point(380, 80); this.xmlRBtn.Name = "xmlRBtn"; this.xmlRBtn.Size = new System.Drawing.Size(49, 19); this.xmlRBtn.TabIndex = 9; this.xmlRBtn.Text = "XML"; this.xmlRBtn.UseVisualStyleBackColor = true; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(769, 351); this.Controls.Add(this.xmlRBtn); this.Controls.Add(this.jsonRBtn); this.Controls.Add(this.dataGrid); this.Controls.Add(this.passTxt); this.Controls.Add(this.userTxt); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.exportBtn); this.Controls.Add(this.loginBtn); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "Form1"; this.Text = "Export Tool"; ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button loginBtn; private System.Windows.Forms.Button exportBtn; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox userTxt; private System.Windows.Forms.TextBox passTxt; private System.Windows.Forms.DataGridView dataGrid; private System.Windows.Forms.RadioButton jsonRBtn; private System.Windows.Forms.RadioButton xmlRBtn; private System.Windows.Forms.DataGridViewTextBoxColumn Id; private System.Windows.Forms.DataGridViewTextBoxColumn firstname; private System.Windows.Forms.DataGridViewTextBoxColumn lastname; private System.Windows.Forms.DataGridViewTextBoxColumn Department_Short; private System.Windows.Forms.DataGridViewTextBoxColumn Department; private System.Windows.Forms.DataGridViewTextBoxColumn creationDate; private System.Windows.Forms.DataGridViewCheckBoxColumn markItem; } }