namespace PolyTraderSharp.Ui.Views { partial class TerminalView { /// Erforderliche Designer-Variable. 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.components = new System.ComponentModel.Container(); this.tabControlTerminal = new System.Windows.Forms.TabControl(); this.tabLive = new System.Windows.Forms.TabPage(); 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.contextMenuTerminal = new System.Windows.Forms.ContextMenuStrip(this.components); this.miCopy = new System.Windows.Forms.ToolStripMenuItem(); this.miSelectAll = new System.Windows.Forms.ToolStripMenuItem(); this.miCopyAll = new System.Windows.Forms.ToolStripMenuItem(); this.miSep1 = new System.Windows.Forms.ToolStripSeparator(); this.miClear = new System.Windows.Forms.ToolStripMenuItem(); this.tabViewer = new System.Windows.Forms.TabPage(); this.dgvLogs = new System.Windows.Forms.DataGridView(); this.colLogTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.colLogLevel = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.colLogCid = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.colLogMsg = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.pnlViewerTop = new System.Windows.Forms.Panel(); this.lblVDatum = new System.Windows.Forms.Label(); this.dtViewerDate = new System.Windows.Forms.DateTimePicker(); this.lblVLevel = new System.Windows.Forms.Label(); this.cbViewerLevel = new System.Windows.Forms.ComboBox(); this.lblVCid = new System.Windows.Forms.Label(); this.tbViewerCid = new System.Windows.Forms.TextBox(); this.lblVText = new System.Windows.Forms.Label(); this.tbViewerText = new System.Windows.Forms.TextBox(); this.btnViewerLoad = new System.Windows.Forms.Button(); this.lblViewerStatus = new System.Windows.Forms.Label(); this.tabControlTerminal.SuspendLayout(); this.tabLive.SuspendLayout(); this.pnlTop.SuspendLayout(); this.contextMenuTerminal.SuspendLayout(); this.tabViewer.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgvLogs)).BeginInit(); this.pnlViewerTop.SuspendLayout(); this.SuspendLayout(); // // tabControlTerminal // this.tabControlTerminal.Controls.Add(this.tabLive); this.tabControlTerminal.Controls.Add(this.tabViewer); this.tabControlTerminal.Dock = System.Windows.Forms.DockStyle.Fill; this.tabControlTerminal.Location = new System.Drawing.Point(0, 0); this.tabControlTerminal.Name = "tabControlTerminal"; this.tabControlTerminal.SelectedIndex = 0; this.tabControlTerminal.Size = new System.Drawing.Size(1000, 650); this.tabControlTerminal.TabIndex = 0; // // tabLive // this.tabLive.Controls.Add(this.rtbTerminal); this.tabLive.Controls.Add(this.pnlTop); this.tabLive.Location = new System.Drawing.Point(4, 24); this.tabLive.Name = "tabLive"; this.tabLive.Padding = new System.Windows.Forms.Padding(3); this.tabLive.Size = new System.Drawing.Size(992, 622); this.tabLive.TabIndex = 0; this.tabLive.Text = "Live"; this.tabLive.UseVisualStyleBackColor = true; // // 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(3, 3); this.pnlTop.Name = "pnlTop"; this.pnlTop.Size = new System.Drawing.Size(986, 36); this.pnlTop.TabIndex = 0; // // btnAutoscroll // this.btnAutoscroll.BackColor = System.Drawing.Color.LightGreen; 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 = false; // // cbLogLevel // this.cbLogLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbLogLevel.Items.AddRange(new object[] { "Alle", "Debug", "Info", "Warning", "Error", "Trade", "TradeReasoning"}); 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.ContextMenuStrip = this.contextMenuTerminal; this.rtbTerminal.Dock = System.Windows.Forms.DockStyle.Fill; this.rtbTerminal.ForeColor = System.Drawing.Color.White; this.rtbTerminal.Location = new System.Drawing.Point(3, 39); this.rtbTerminal.Name = "rtbTerminal"; this.rtbTerminal.ReadOnly = true; this.rtbTerminal.Size = new System.Drawing.Size(986, 580); this.rtbTerminal.TabIndex = 1; this.rtbTerminal.Text = ""; // // contextMenuTerminal // this.contextMenuTerminal.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.miCopy, this.miSelectAll, this.miCopyAll, this.miSep1, this.miClear}); this.contextMenuTerminal.Name = "contextMenuTerminal"; // // miCopy // this.miCopy.Name = "miCopy"; this.miCopy.ShortcutKeyDisplayString = "Strg+C"; this.miCopy.Text = "Kopieren"; // // miSelectAll // this.miSelectAll.Name = "miSelectAll"; this.miSelectAll.ShortcutKeyDisplayString = "Strg+A"; this.miSelectAll.Text = "Alles auswählen"; // // miCopyAll // this.miCopyAll.Name = "miCopyAll"; this.miCopyAll.Text = "Alles kopieren"; // // miSep1 // this.miSep1.Name = "miSep1"; // // miClear // this.miClear.Name = "miClear"; this.miClear.Text = "Terminal leeren"; // // tabViewer // this.tabViewer.Controls.Add(this.dgvLogs); this.tabViewer.Controls.Add(this.pnlViewerTop); this.tabViewer.Location = new System.Drawing.Point(4, 24); this.tabViewer.Name = "tabViewer"; this.tabViewer.Padding = new System.Windows.Forms.Padding(3); this.tabViewer.Size = new System.Drawing.Size(992, 622); this.tabViewer.TabIndex = 1; this.tabViewer.Text = "Log Viewer"; this.tabViewer.UseVisualStyleBackColor = true; // // dgvLogs // this.dgvLogs.AllowUserToAddRows = false; this.dgvLogs.AllowUserToDeleteRows = false; this.dgvLogs.AutoGenerateColumns = false; this.dgvLogs.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvLogs.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.colLogTime, this.colLogLevel, this.colLogCid, this.colLogMsg}); this.dgvLogs.Dock = System.Windows.Forms.DockStyle.Fill; this.dgvLogs.Location = new System.Drawing.Point(3, 41); this.dgvLogs.Name = "dgvLogs"; this.dgvLogs.ReadOnly = true; this.dgvLogs.RowHeadersVisible = false; this.dgvLogs.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dgvLogs.Size = new System.Drawing.Size(986, 578); this.dgvLogs.TabIndex = 1; // // colLogTime // this.colLogTime.DataPropertyName = "Time"; this.colLogTime.HeaderText = "Zeit"; this.colLogTime.Name = "colLogTime"; this.colLogTime.ReadOnly = true; this.colLogTime.Width = 140; // // colLogLevel // this.colLogLevel.DataPropertyName = "Level"; this.colLogLevel.HeaderText = "Level"; this.colLogLevel.Name = "colLogLevel"; this.colLogLevel.ReadOnly = true; this.colLogLevel.Width = 110; // // colLogCid // this.colLogCid.DataPropertyName = "Cid"; this.colLogCid.HeaderText = "CorrelationId"; this.colLogCid.Name = "colLogCid"; this.colLogCid.ReadOnly = true; this.colLogCid.Width = 130; // // colLogMsg // this.colLogMsg.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.colLogMsg.DataPropertyName = "Message"; this.colLogMsg.HeaderText = "Nachricht"; this.colLogMsg.Name = "colLogMsg"; this.colLogMsg.ReadOnly = true; // // pnlViewerTop // this.pnlViewerTop.Controls.Add(this.lblViewerStatus); this.pnlViewerTop.Controls.Add(this.btnViewerLoad); this.pnlViewerTop.Controls.Add(this.tbViewerText); this.pnlViewerTop.Controls.Add(this.lblVText); this.pnlViewerTop.Controls.Add(this.tbViewerCid); this.pnlViewerTop.Controls.Add(this.lblVCid); this.pnlViewerTop.Controls.Add(this.cbViewerLevel); this.pnlViewerTop.Controls.Add(this.lblVLevel); this.pnlViewerTop.Controls.Add(this.dtViewerDate); this.pnlViewerTop.Controls.Add(this.lblVDatum); this.pnlViewerTop.Dock = System.Windows.Forms.DockStyle.Top; this.pnlViewerTop.Location = new System.Drawing.Point(3, 3); this.pnlViewerTop.Name = "pnlViewerTop"; this.pnlViewerTop.Size = new System.Drawing.Size(986, 38); this.pnlViewerTop.TabIndex = 0; // // lblVDatum // this.lblVDatum.AutoSize = true; this.lblVDatum.Location = new System.Drawing.Point(8, 11); this.lblVDatum.Name = "lblVDatum"; this.lblVDatum.Size = new System.Drawing.Size(46, 15); this.lblVDatum.TabIndex = 0; this.lblVDatum.Text = "Datum:"; // // dtViewerDate // this.dtViewerDate.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.dtViewerDate.Location = new System.Drawing.Point(58, 7); this.dtViewerDate.Name = "dtViewerDate"; this.dtViewerDate.Size = new System.Drawing.Size(110, 23); this.dtViewerDate.TabIndex = 1; // // lblVLevel // this.lblVLevel.AutoSize = true; this.lblVLevel.Location = new System.Drawing.Point(180, 11); this.lblVLevel.Name = "lblVLevel"; this.lblVLevel.Size = new System.Drawing.Size(38, 15); this.lblVLevel.TabIndex = 2; this.lblVLevel.Text = "Level:"; // // cbViewerLevel // this.cbViewerLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbViewerLevel.Items.AddRange(new object[] { "Alle", "Debug", "Info", "Warning", "Error", "Trade", "TradeReasoning"}); this.cbViewerLevel.Location = new System.Drawing.Point(222, 7); this.cbViewerLevel.Name = "cbViewerLevel"; this.cbViewerLevel.Size = new System.Drawing.Size(140, 23); this.cbViewerLevel.TabIndex = 3; // // lblVCid // this.lblVCid.AutoSize = true; this.lblVCid.Location = new System.Drawing.Point(374, 11); this.lblVCid.Name = "lblVCid"; this.lblVCid.Size = new System.Drawing.Size(29, 15); this.lblVCid.TabIndex = 4; this.lblVCid.Text = "CID:"; // // tbViewerCid // this.tbViewerCid.Location = new System.Drawing.Point(408, 7); this.tbViewerCid.Name = "tbViewerCid"; this.tbViewerCid.PlaceholderText = "SignalId …"; this.tbViewerCid.Size = new System.Drawing.Size(150, 23); this.tbViewerCid.TabIndex = 5; // // lblVText // this.lblVText.AutoSize = true; this.lblVText.Location = new System.Drawing.Point(570, 11); this.lblVText.Name = "lblVText"; this.lblVText.Size = new System.Drawing.Size(31, 15); this.lblVText.TabIndex = 6; this.lblVText.Text = "Text:"; // // tbViewerText // this.tbViewerText.Location = new System.Drawing.Point(606, 7); this.tbViewerText.Name = "tbViewerText"; this.tbViewerText.PlaceholderText = "Suchtext …"; this.tbViewerText.Size = new System.Drawing.Size(180, 23); this.tbViewerText.TabIndex = 7; // // btnViewerLoad // this.btnViewerLoad.Location = new System.Drawing.Point(796, 6); this.btnViewerLoad.Name = "btnViewerLoad"; this.btnViewerLoad.Size = new System.Drawing.Size(90, 26); this.btnViewerLoad.TabIndex = 8; this.btnViewerLoad.Text = "Laden"; this.btnViewerLoad.UseVisualStyleBackColor = true; // // lblViewerStatus // this.lblViewerStatus.AutoSize = true; this.lblViewerStatus.Location = new System.Drawing.Point(895, 11); this.lblViewerStatus.Name = "lblViewerStatus"; this.lblViewerStatus.Size = new System.Drawing.Size(23, 15); this.lblViewerStatus.TabIndex = 9; this.lblViewerStatus.Text = "—"; // // TerminalView // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.tabControlTerminal); this.ClientSize = new System.Drawing.Size(1000, 650); this.Name = "TerminalView"; this.Text = "Terminal / Logs"; this.tabControlTerminal.ResumeLayout(false); this.tabLive.ResumeLayout(false); this.pnlTop.ResumeLayout(false); this.pnlTop.PerformLayout(); this.contextMenuTerminal.ResumeLayout(false); this.tabViewer.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dgvLogs)).EndInit(); this.pnlViewerTop.ResumeLayout(false); this.pnlViewerTop.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.TabControl tabControlTerminal; private System.Windows.Forms.TabPage tabLive; 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; private System.Windows.Forms.ContextMenuStrip contextMenuTerminal; private System.Windows.Forms.ToolStripMenuItem miCopy; private System.Windows.Forms.ToolStripMenuItem miSelectAll; private System.Windows.Forms.ToolStripMenuItem miCopyAll; private System.Windows.Forms.ToolStripSeparator miSep1; private System.Windows.Forms.ToolStripMenuItem miClear; private System.Windows.Forms.TabPage tabViewer; private System.Windows.Forms.Panel pnlViewerTop; private System.Windows.Forms.Label lblVDatum; private System.Windows.Forms.DateTimePicker dtViewerDate; private System.Windows.Forms.Label lblVLevel; private System.Windows.Forms.ComboBox cbViewerLevel; private System.Windows.Forms.Label lblVCid; private System.Windows.Forms.TextBox tbViewerCid; private System.Windows.Forms.Label lblVText; private System.Windows.Forms.TextBox tbViewerText; private System.Windows.Forms.Button btnViewerLoad; private System.Windows.Forms.Label lblViewerStatus; private System.Windows.Forms.DataGridView dgvLogs; private System.Windows.Forms.DataGridViewTextBoxColumn colLogTime; private System.Windows.Forms.DataGridViewTextBoxColumn colLogLevel; private System.Windows.Forms.DataGridViewTextBoxColumn colLogCid; private System.Windows.Forms.DataGridViewTextBoxColumn colLogMsg; } }