Initial commit: ClawdDotNet
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>
This commit is contained in:
Generated
+117
@@ -0,0 +1,117 @@
|
||||
namespace ClawdDotNet
|
||||
{
|
||||
partial class frm_InstanceManager
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_InstanceManager));
|
||||
toolStrip1 = new ToolStrip();
|
||||
btn_startInstance = new ToolStripButton();
|
||||
toolStripSeparator1 = new ToolStripSeparator();
|
||||
btn_createInstance = new ToolStripButton();
|
||||
dgv_instances = new DataGridView();
|
||||
notifyIcon1 = new NotifyIcon(components);
|
||||
toolStrip1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)dgv_instances).BeginInit();
|
||||
SuspendLayout();
|
||||
//
|
||||
// toolStrip1
|
||||
//
|
||||
toolStrip1.ImageScalingSize = new Size(24, 24);
|
||||
toolStrip1.Items.AddRange(new ToolStripItem[] { btn_startInstance, toolStripSeparator1, btn_createInstance });
|
||||
toolStrip1.Location = new Point(0, 0);
|
||||
toolStrip1.Name = "toolStrip1";
|
||||
toolStrip1.Size = new Size(783, 34);
|
||||
toolStrip1.TabIndex = 0;
|
||||
toolStrip1.Text = "toolStrip1";
|
||||
//
|
||||
// btn_startInstance
|
||||
//
|
||||
btn_startInstance.Image = Properties.Resources.server_go;
|
||||
btn_startInstance.ImageTransparentColor = Color.Magenta;
|
||||
btn_startInstance.Name = "btn_startInstance";
|
||||
btn_startInstance.Size = new Size(146, 29);
|
||||
btn_startInstance.Text = "Start Instance";
|
||||
//
|
||||
// toolStripSeparator1
|
||||
//
|
||||
toolStripSeparator1.Name = "toolStripSeparator1";
|
||||
toolStripSeparator1.Size = new Size(6, 34);
|
||||
//
|
||||
// btn_createInstance
|
||||
//
|
||||
btn_createInstance.Alignment = ToolStripItemAlignment.Right;
|
||||
btn_createInstance.Image = Properties.Resources.server_add;
|
||||
btn_createInstance.ImageTransparentColor = Color.Magenta;
|
||||
btn_createInstance.Name = "btn_createInstance";
|
||||
btn_createInstance.Size = new Size(200, 29);
|
||||
btn_createInstance.Text = "Create New Instance";
|
||||
//
|
||||
// dgv_instances
|
||||
//
|
||||
dgv_instances.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
dgv_instances.Dock = DockStyle.Bottom;
|
||||
dgv_instances.Location = new Point(0, 45);
|
||||
dgv_instances.Name = "dgv_instances";
|
||||
dgv_instances.RowHeadersWidth = 62;
|
||||
dgv_instances.Size = new Size(783, 408);
|
||||
dgv_instances.TabIndex = 1;
|
||||
//
|
||||
// notifyIcon1
|
||||
//
|
||||
notifyIcon1.Text = "notifyIcon1";
|
||||
notifyIcon1.Visible = true;
|
||||
//
|
||||
// frm_InstanceManager
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(10F, 25F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(783, 453);
|
||||
Controls.Add(dgv_instances);
|
||||
Controls.Add(toolStrip1);
|
||||
HelpButton = true;
|
||||
Icon = (Icon)resources.GetObject("$this.Icon");
|
||||
Name = "frm_InstanceManager";
|
||||
Text = "ClawdDotNet - Instance Manager";
|
||||
toolStrip1.ResumeLayout(false);
|
||||
toolStrip1.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)dgv_instances).EndInit();
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private ToolStrip toolStrip1;
|
||||
private DataGridView dgv_instances;
|
||||
private ToolStripButton btn_createInstance;
|
||||
private ToolStripSeparator toolStripSeparator1;
|
||||
private ToolStripButton btn_startInstance;
|
||||
private NotifyIcon notifyIcon1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user