- Ui/LauncherForm: schlanke Startleiste, rendert Buttons dynamisch aus den registrierten Views (gruppiert) + Legacy-Button fuer das alte Tab-frm_main. - Ui/ViewHostForm: generisches Host-Fenster fuer eine View (Control docked fill). - Ui/ShellUiHost : IModuleUiHost: sammelt Views, oeffnet Einzelinstanz-Fenster. - Ui/Views/TerminalView: erste designbare View (UserControl + Designer.cs); Terminal-Logik aus frm_main extrahiert; DI via Initialize(TerminalLogger) -> parameterloser Ctor bleibt fuer den VS-Designer nutzbar. - Program.cs: startet jetzt LauncherForm (statt frm_main), registriert die Terminal-View; App bleibt via Legacy-Button voll bedienbar. - Build 0 Fehler. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
100 lines
4.0 KiB
C#
100 lines
4.0 KiB
C#
namespace PolyTraderSharp.Ui.Views
|
|
{
|
|
partial class TerminalView
|
|
{
|
|
/// <summary>Erforderliche Designer-Variable.</summary>
|
|
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.btnAutoscroll = new System.Windows.Forms.Button();
|
|
this.cbLogLevel = new System.Windows.Forms.ComboBox();
|
|
this.lblFilter = new System.Windows.Forms.Label();
|
|
this.rtbTerminal = new System.Windows.Forms.RichTextBox();
|
|
this.pnlTop.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// pnlTop
|
|
//
|
|
this.pnlTop.Controls.Add(this.btnAutoscroll);
|
|
this.pnlTop.Controls.Add(this.cbLogLevel);
|
|
this.pnlTop.Controls.Add(this.lblFilter);
|
|
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(900, 36);
|
|
this.pnlTop.TabIndex = 0;
|
|
//
|
|
// btnAutoscroll
|
|
//
|
|
this.btnAutoscroll.Location = new System.Drawing.Point(224, 5);
|
|
this.btnAutoscroll.Name = "btnAutoscroll";
|
|
this.btnAutoscroll.Size = new System.Drawing.Size(150, 26);
|
|
this.btnAutoscroll.TabIndex = 2;
|
|
this.btnAutoscroll.Text = "Stop Autoscroll";
|
|
this.btnAutoscroll.UseVisualStyleBackColor = true;
|
|
//
|
|
// cbLogLevel
|
|
//
|
|
this.cbLogLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.cbLogLevel.Location = new System.Drawing.Point(52, 6);
|
|
this.cbLogLevel.Name = "cbLogLevel";
|
|
this.cbLogLevel.Size = new System.Drawing.Size(160, 23);
|
|
this.cbLogLevel.TabIndex = 1;
|
|
//
|
|
// lblFilter
|
|
//
|
|
this.lblFilter.AutoSize = true;
|
|
this.lblFilter.Location = new System.Drawing.Point(8, 10);
|
|
this.lblFilter.Name = "lblFilter";
|
|
this.lblFilter.Size = new System.Drawing.Size(38, 15);
|
|
this.lblFilter.TabIndex = 0;
|
|
this.lblFilter.Text = "Level:";
|
|
//
|
|
// rtbTerminal
|
|
//
|
|
this.rtbTerminal.BackColor = System.Drawing.Color.Black;
|
|
this.rtbTerminal.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.rtbTerminal.ForeColor = System.Drawing.Color.White;
|
|
this.rtbTerminal.Location = new System.Drawing.Point(0, 36);
|
|
this.rtbTerminal.Name = "rtbTerminal";
|
|
this.rtbTerminal.ReadOnly = true;
|
|
this.rtbTerminal.Size = new System.Drawing.Size(900, 464);
|
|
this.rtbTerminal.TabIndex = 1;
|
|
this.rtbTerminal.Text = "";
|
|
//
|
|
// TerminalView
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.rtbTerminal);
|
|
this.Controls.Add(this.pnlTop);
|
|
this.Name = "TerminalView";
|
|
this.Size = new System.Drawing.Size(900, 500);
|
|
this.pnlTop.ResumeLayout(false);
|
|
this.pnlTop.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel pnlTop;
|
|
private System.Windows.Forms.Label lblFilter;
|
|
private System.Windows.Forms.ComboBox cbLogLevel;
|
|
private System.Windows.Forms.Button btnAutoscroll;
|
|
private System.Windows.Forms.RichTextBox rtbTerminal;
|
|
}
|
|
}
|