update 20241201
This commit is contained in:
120
Client - Kopie/Diverses/InputDialog.Designer.cs
generated
Normal file
120
Client - Kopie/Diverses/InputDialog.Designer.cs
generated
Normal file
@@ -0,0 +1,120 @@
|
||||
namespace OnDoc.Diverses
|
||||
{
|
||||
partial class InputDialog
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InputDialog));
|
||||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.btnok = new System.Windows.Forms.Button();
|
||||
this.btncancel = new System.Windows.Forms.Button();
|
||||
this.cbboxMitarbeiter = new Syncfusion.WinForms.ListView.SfComboBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.cbboxMitarbeiter)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// textBox1
|
||||
//
|
||||
this.textBox1.Location = new System.Drawing.Point(18, 63);
|
||||
this.textBox1.Name = "textBox1";
|
||||
this.textBox1.Size = new System.Drawing.Size(349, 20);
|
||||
this.textBox1.TabIndex = 0;
|
||||
this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(18, 28);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(0, 13);
|
||||
this.label1.TabIndex = 1;
|
||||
//
|
||||
// btnok
|
||||
//
|
||||
this.btnok.Enabled = false;
|
||||
this.btnok.Location = new System.Drawing.Point(189, 103);
|
||||
this.btnok.Name = "btnok";
|
||||
this.btnok.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnok.TabIndex = 2;
|
||||
this.btnok.Text = "OK";
|
||||
this.btnok.UseVisualStyleBackColor = true;
|
||||
this.btnok.Click += new System.EventHandler(this.btnok_Click);
|
||||
//
|
||||
// btncancel
|
||||
//
|
||||
this.btncancel.Location = new System.Drawing.Point(292, 103);
|
||||
this.btncancel.Name = "btncancel";
|
||||
this.btncancel.Size = new System.Drawing.Size(75, 23);
|
||||
this.btncancel.TabIndex = 3;
|
||||
this.btncancel.Text = "Abbruch";
|
||||
this.btncancel.UseVisualStyleBackColor = true;
|
||||
this.btncancel.Click += new System.EventHandler(this.btncancel_Click);
|
||||
//
|
||||
// cbboxMitarbeiter
|
||||
//
|
||||
this.cbboxMitarbeiter.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
|
||||
this.cbboxMitarbeiter.DropDownPosition = Syncfusion.WinForms.Core.Enums.PopupRelativeAlignment.Center;
|
||||
this.cbboxMitarbeiter.Location = new System.Drawing.Point(18, 53);
|
||||
this.cbboxMitarbeiter.Name = "cbboxMitarbeiter";
|
||||
this.cbboxMitarbeiter.Size = new System.Drawing.Size(345, 19);
|
||||
this.cbboxMitarbeiter.Style.DropDownStyle.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
|
||||
this.cbboxMitarbeiter.Style.TokenStyle.CloseButtonBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
|
||||
this.cbboxMitarbeiter.TabIndex = 7;
|
||||
this.cbboxMitarbeiter.TabStop = false;
|
||||
this.cbboxMitarbeiter.SelectedIndexChanged += new System.EventHandler(this.cbboxMitarbeiter_SelectedIndexChanged);
|
||||
//
|
||||
// InputDialog
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(372, 131);
|
||||
this.Controls.Add(this.cbboxMitarbeiter);
|
||||
this.Controls.Add(this.btncancel);
|
||||
this.Controls.Add(this.btnok);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.textBox1);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.Name = "InputDialog";
|
||||
this.Style.MdiChild.IconHorizontalAlignment = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
this.Style.MdiChild.IconVerticalAlignment = System.Windows.Forms.VisualStyles.VerticalAlignment.Center;
|
||||
this.Text = "InputDialog";
|
||||
this.Load += new System.EventHandler(this.InputDialog_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.cbboxMitarbeiter)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.TextBox textBox1;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.Button btnok;
|
||||
private System.Windows.Forms.Button btncancel;
|
||||
private Syncfusion.WinForms.ListView.SfComboBox cbboxMitarbeiter;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user