Import des bestehenden Projektstands in Git. - .NET 10 WinForms Anwendung (Multi-Agent / Tool-System) - .gitignore fuer Build-Artefakte, Secrets und Runtime-Daten ergaenzt Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
112 lines
3.7 KiB
C#
112 lines
3.7 KiB
C#
namespace ClawdDotNet
|
|
{
|
|
partial class frm_CreateInstance
|
|
{
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
lblInfo = new Label();
|
|
txtName = new TextBox();
|
|
lblPreview = new Label();
|
|
btnOk = new Button();
|
|
btnCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// lblInfo
|
|
//
|
|
lblInfo.Font = new Font("Segoe UI", 10F);
|
|
lblInfo.ForeColor = Color.White;
|
|
lblInfo.Location = new Point(20, 20);
|
|
lblInfo.Name = "lblInfo";
|
|
lblInfo.Size = new Size(380, 25);
|
|
lblInfo.TabIndex = 0;
|
|
lblInfo.Text = "Name der neuen Instanz:";
|
|
//
|
|
// txtName
|
|
//
|
|
txtName.Font = new Font("Segoe UI", 11F);
|
|
txtName.Location = new Point(20, 50);
|
|
txtName.Name = "txtName";
|
|
txtName.Size = new Size(390, 32);
|
|
txtName.TabIndex = 1;
|
|
txtName.TextChanged += OnTxtNameTextChanged;
|
|
//
|
|
// lblPreview
|
|
//
|
|
lblPreview.Font = new Font("Segoe UI", 9F);
|
|
lblPreview.ForeColor = Color.Gray;
|
|
lblPreview.Location = new Point(20, 90);
|
|
lblPreview.Name = "lblPreview";
|
|
lblPreview.Size = new Size(390, 25);
|
|
lblPreview.TabIndex = 2;
|
|
lblPreview.Text = "Ordner: Instance-...";
|
|
//
|
|
// btnOk
|
|
//
|
|
btnOk.BackColor = Color.FromArgb(60, 130, 60);
|
|
btnOk.FlatStyle = FlatStyle.Flat;
|
|
btnOk.ForeColor = Color.White;
|
|
btnOk.Location = new Point(220, 130);
|
|
btnOk.Name = "btnOk";
|
|
btnOk.Size = new Size(90, 35);
|
|
btnOk.TabIndex = 3;
|
|
btnOk.Text = "Erstellen";
|
|
btnOk.UseVisualStyleBackColor = false;
|
|
btnOk.DialogResult = DialogResult.OK;
|
|
//
|
|
// btnCancel
|
|
//
|
|
btnCancel.BackColor = Color.FromArgb(80, 80, 80);
|
|
btnCancel.FlatStyle = FlatStyle.Flat;
|
|
btnCancel.ForeColor = Color.White;
|
|
btnCancel.Location = new Point(320, 130);
|
|
btnCancel.Name = "btnCancel";
|
|
btnCancel.Size = new Size(90, 35);
|
|
btnCancel.TabIndex = 4;
|
|
btnCancel.Text = "Abbrechen";
|
|
btnCancel.UseVisualStyleBackColor = false;
|
|
btnCancel.DialogResult = DialogResult.Cancel;
|
|
//
|
|
// frm_CreateInstance
|
|
//
|
|
AcceptButton = btnOk;
|
|
BackColor = Color.FromArgb(45, 45, 45);
|
|
CancelButton = btnCancel;
|
|
ClientSize = new Size(430, 180);
|
|
Controls.Add(lblInfo);
|
|
Controls.Add(txtName);
|
|
Controls.Add(lblPreview);
|
|
Controls.Add(btnOk);
|
|
Controls.Add(btnCancel);
|
|
FormBorderStyle = FormBorderStyle.FixedDialog;
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "frm_CreateInstance";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Neue Instanz erstellen";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label lblInfo;
|
|
private TextBox txtName;
|
|
private Label lblPreview;
|
|
private Button btnOk;
|
|
private Button btnCancel;
|
|
}
|
|
}
|