Files
PolyTraderSharp/Ui/Views/SettingsView.Designer.cs
T
RichardandClaude Opus 4.8 ad5ba34b56 Phase 5-UI: Views sind echte Forms + Launcher-Offen-Status
- ModuleView liefert jetzt ein Form (CreateForm statt CreateControl); die 4 Views
  (Terminal, Settings, Jobs, Dashboard) von UserControl auf Form umgestellt
  (im Designer als Fenster bearbeitbar). ViewHostForm entfernt.
- ShellUiHost verwaltet offene Forms: Einzelinstanz, bereits offenes Fenster wird
  in den Vordergrund geholt, OpenStateChanged-Event.
- LauncherForm: Fenster-Buttons an View-IDs gebunden; offene Fenster werden am
  Button markiert (Checked), erneuter Klick holt das Fenster nach vorn.
- Build 0 Fehler.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-03 09:19:13 +02:00

84 lines
3.1 KiB
C#

namespace PolyTraderSharp.Ui.Views
{
partial class SettingsView
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Komponenten-Designer generierter Code
private void InitializeComponent()
{
this.pnlTop = new System.Windows.Forms.Panel();
this.btnReload = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.propertyGrid = new System.Windows.Forms.PropertyGrid();
this.pnlTop.SuspendLayout();
this.SuspendLayout();
//
// pnlTop
//
this.pnlTop.Controls.Add(this.btnReload);
this.pnlTop.Controls.Add(this.btnSave);
this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
this.pnlTop.Location = new System.Drawing.Point(0, 0);
this.pnlTop.Name = "pnlTop";
this.pnlTop.Size = new System.Drawing.Size(700, 44);
this.pnlTop.TabIndex = 0;
//
// btnReload
//
this.btnReload.Location = new System.Drawing.Point(140, 8);
this.btnReload.Name = "btnReload";
this.btnReload.Size = new System.Drawing.Size(120, 28);
this.btnReload.TabIndex = 1;
this.btnReload.Text = "Neu laden";
this.btnReload.UseVisualStyleBackColor = true;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(12, 8);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(120, 28);
this.btnSave.TabIndex = 0;
this.btnSave.Text = "Speichern";
this.btnSave.UseVisualStyleBackColor = true;
//
// propertyGrid
//
this.propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
this.propertyGrid.Location = new System.Drawing.Point(0, 44);
this.propertyGrid.Name = "propertyGrid";
this.propertyGrid.Size = new System.Drawing.Size(700, 556);
this.propertyGrid.TabIndex = 1;
//
// SettingsView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.propertyGrid);
this.Controls.Add(this.pnlTop);
this.ClientSize = new System.Drawing.Size(720, 720);
this.Name = "SettingsView";
this.Text = "Server Settings";
this.pnlTop.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel pnlTop;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnReload;
private System.Windows.Forms.PropertyGrid propertyGrid;
}
}