test_sichtbarkeitsteuern_te.../Test_SichtbarkeitSteuern/Form1.Designer.cs
Hoeglinger Eugen 7e74257c35 Initialized
- Testen der Sichtbarkeitssteuerung über eine eigene Klasse
2022-07-06 15:50:01 +02:00

169 lines
7.5 KiB
C#

namespace Test_SichtbarkeitSteuern
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.buttonDoSomething = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.checkBoxDoIt = new System.Windows.Forms.CheckBox();
this.radioButtonEither = new System.Windows.Forms.RadioButton();
this.radioButtonOr = new System.Windows.Forms.RadioButton();
this.buttonAdmin = new System.Windows.Forms.Button();
this.buttonUser = new System.Windows.Forms.Button();
this.buttonKeyuser = new System.Windows.Forms.Button();
this.labelStatus = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// buttonDoSomething
//
this.buttonDoSomething.Location = new System.Drawing.Point(13, 13);
this.buttonDoSomething.Name = "buttonDoSomething";
this.buttonDoSomething.Size = new System.Drawing.Size(75, 23);
this.buttonDoSomething.TabIndex = 1;
this.buttonDoSomething.Text = "Tue etwas";
this.buttonDoSomething.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.radioButtonOr);
this.groupBox1.Controls.Add(this.radioButtonEither);
this.groupBox1.Controls.Add(this.checkBoxDoIt);
this.groupBox1.Location = new System.Drawing.Point(13, 43);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(200, 100);
this.groupBox1.TabIndex = 2;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Gruppe";
//
// checkBoxDoIt
//
this.checkBoxDoIt.AutoSize = true;
this.checkBoxDoIt.Location = new System.Drawing.Point(7, 20);
this.checkBoxDoIt.Name = "checkBoxDoIt";
this.checkBoxDoIt.Size = new System.Drawing.Size(53, 17);
this.checkBoxDoIt.TabIndex = 0;
this.checkBoxDoIt.Text = "Tu es";
this.checkBoxDoIt.UseVisualStyleBackColor = true;
//
// radioButtonEither
//
this.radioButtonEither.AutoSize = true;
this.radioButtonEither.Checked = true;
this.radioButtonEither.Location = new System.Drawing.Point(7, 44);
this.radioButtonEither.Name = "radioButtonEither";
this.radioButtonEither.Size = new System.Drawing.Size(70, 17);
this.radioButtonEither.TabIndex = 1;
this.radioButtonEither.TabStop = true;
this.radioButtonEither.Text = "Entweder";
this.radioButtonEither.UseVisualStyleBackColor = true;
//
// radioButtonOr
//
this.radioButtonOr.AutoSize = true;
this.radioButtonOr.Location = new System.Drawing.Point(7, 68);
this.radioButtonOr.Name = "radioButtonOr";
this.radioButtonOr.Size = new System.Drawing.Size(48, 17);
this.radioButtonOr.TabIndex = 2;
this.radioButtonOr.Text = "Oder";
this.radioButtonOr.UseVisualStyleBackColor = true;
//
// buttonAdmin
//
this.buttonAdmin.Enabled = false;
this.buttonAdmin.Location = new System.Drawing.Point(13, 415);
this.buttonAdmin.Name = "buttonAdmin";
this.buttonAdmin.Size = new System.Drawing.Size(75, 23);
this.buttonAdmin.TabIndex = 3;
this.buttonAdmin.Text = "Admin";
this.buttonAdmin.UseVisualStyleBackColor = true;
this.buttonAdmin.Click += new System.EventHandler(this.buttonAdmin_Click);
//
// buttonUser
//
this.buttonUser.Location = new System.Drawing.Point(175, 415);
this.buttonUser.Name = "buttonUser";
this.buttonUser.Size = new System.Drawing.Size(75, 23);
this.buttonUser.TabIndex = 4;
this.buttonUser.Text = "User";
this.buttonUser.UseVisualStyleBackColor = true;
this.buttonUser.Click += new System.EventHandler(this.buttonUser_Click);
//
// buttonKeyuser
//
this.buttonKeyuser.Location = new System.Drawing.Point(94, 415);
this.buttonKeyuser.Name = "buttonKeyuser";
this.buttonKeyuser.Size = new System.Drawing.Size(75, 23);
this.buttonKeyuser.TabIndex = 5;
this.buttonKeyuser.Text = "Keyuser";
this.buttonKeyuser.UseVisualStyleBackColor = true;
this.buttonKeyuser.Click += new System.EventHandler(this.buttonKeyuser_Click);
//
// labelStatus
//
this.labelStatus.AutoSize = true;
this.labelStatus.Location = new System.Drawing.Point(13, 150);
this.labelStatus.Name = "labelStatus";
this.labelStatus.Size = new System.Drawing.Size(261, 13);
this.labelStatus.TabIndex = 6;
this.labelStatus.Text = "Status: Ein Administrator darf alles sehen und alles tun";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.labelStatus);
this.Controls.Add(this.buttonKeyuser);
this.Controls.Add(this.buttonUser);
this.Controls.Add(this.buttonAdmin);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.buttonDoSomething);
this.Name = "Form1";
this.Text = "Form1";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonDoSomething;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton radioButtonOr;
private System.Windows.Forms.RadioButton radioButtonEither;
private System.Windows.Forms.CheckBox checkBoxDoIt;
private System.Windows.Forms.Button buttonAdmin;
private System.Windows.Forms.Button buttonUser;
private System.Windows.Forms.Button buttonKeyuser;
private System.Windows.Forms.Label labelStatus;
}
}