##// END OF EJS Templates
missing files
missing files

File last commit:

r214:9c32ef39b851 v2
r237:f2150c16b476 v2
Show More
TraceForm.Designer.cs
148 lines | 9.3 KiB | text/x-csharp | CSharpLexer
cin
initial work on interactive logger
r45 namespace Implab.Diagnostics.Interactive {
partial class TraceForm {
/// <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() {
cin
refactoring, interactive tarce log almost complete
r47 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
cin
Added the time delta column to the interactive trace listener
r214 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
cin
refactoring, interactive tarce log almost complete
r47 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
cin
Added the time delta column to the interactive trace listener
r214 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
cin
refactoring, interactive tarce log almost complete
r47 this.eventsDataGrid = new System.Windows.Forms.DataGridView();
cin
Added the time delta column to the interactive trace listener
r214 this.traceViewItemBindingSource = new System.Windows.Forms.BindingSource();
cin
refactoring, interactive tarce log almost complete
r47 this.threadDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
cin
Added the time delta column to the interactive trace listener
r214 this.TimeDelta = new System.Windows.Forms.DataGridViewTextBoxColumn();
cin
Interactive tracing...
r48 this.Channel = new System.Windows.Forms.DataGridViewTextBoxColumn();
cin
refactoring, interactive tarce log almost complete
r47 this.messageDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.eventsDataGrid)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.traceViewItemBindingSource)).BeginInit();
cin
initial work on interactive logger
r45 this.SuspendLayout();
//
cin
refactoring, interactive tarce log almost complete
r47 // eventsDataGrid
cin
initial work on interactive logger
r45 //
cin
refactoring, interactive tarce log almost complete
r47 this.eventsDataGrid.AllowUserToAddRows = false;
this.eventsDataGrid.AllowUserToDeleteRows = false;
this.eventsDataGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.eventsDataGrid.AutoGenerateColumns = false;
this.eventsDataGrid.BackgroundColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
dataGridViewCellStyle1.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.eventsDataGrid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
this.eventsDataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.eventsDataGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.threadDataGridViewTextBoxColumn,
cin
Added the time delta column to the interactive trace listener
r214 this.TimeDelta,
cin
Interactive tracing...
r48 this.Channel,
cin
refactoring, interactive tarce log almost complete
r47 this.messageDataGridViewTextBoxColumn});
this.eventsDataGrid.DataSource = this.traceViewItemBindingSource;
cin
Added the time delta column to the interactive trace listener
r214 dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle4.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.eventsDataGrid.DefaultCellStyle = dataGridViewCellStyle4;
cin
refactoring, interactive tarce log almost complete
r47 this.eventsDataGrid.Location = new System.Drawing.Point(12, 12);
this.eventsDataGrid.Name = "eventsDataGrid";
this.eventsDataGrid.ReadOnly = true;
cin
Added the time delta column to the interactive trace listener
r214 this.eventsDataGrid.RowHeadersVisible = false;
cin
refactoring, interactive tarce log almost complete
r47 this.eventsDataGrid.RowHeadersWidth = 17;
this.eventsDataGrid.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.eventsDataGrid.Size = new System.Drawing.Size(939, 480);
this.eventsDataGrid.TabIndex = 1;
this.eventsDataGrid.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.eventsDataGrid_CellFormatting);
//
// traceViewItemBindingSource
//
this.traceViewItemBindingSource.DataSource = typeof(Implab.Diagnostics.Interactive.TraceViewItem);
//
// threadDataGridViewTextBoxColumn
//
cin
Added the time delta column to the interactive trace listener
r214 this.threadDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
cin
refactoring, interactive tarce log almost complete
r47 this.threadDataGridViewTextBoxColumn.DataPropertyName = "Thread";
this.threadDataGridViewTextBoxColumn.HeaderText = "TID";
this.threadDataGridViewTextBoxColumn.Name = "threadDataGridViewTextBoxColumn";
this.threadDataGridViewTextBoxColumn.ReadOnly = true;
cin
Added the time delta column to the interactive trace listener
r214 this.threadDataGridViewTextBoxColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.threadDataGridViewTextBoxColumn.Width = 32;
//
// TimeDelta
//
this.TimeDelta.DataPropertyName = "TimeDelta";
dataGridViewCellStyle2.Format = "\'+\' 0 \'ms\'";
dataGridViewCellStyle2.NullValue = null;
this.TimeDelta.DefaultCellStyle = dataGridViewCellStyle2;
this.TimeDelta.HeaderText = "TimeDelta";
this.TimeDelta.Name = "TimeDelta";
this.TimeDelta.ReadOnly = true;
this.TimeDelta.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
cin
refactoring, interactive tarce log almost complete
r47 //
cin
Interactive tracing...
r48 // Channel
//
this.Channel.DataPropertyName = "Channel";
this.Channel.HeaderText = "Channel";
this.Channel.Name = "Channel";
this.Channel.ReadOnly = true;
cin
Added the time delta column to the interactive trace listener
r214 this.Channel.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
cin
Interactive tracing...
r48 //
cin
refactoring, interactive tarce log almost complete
r47 // messageDataGridViewTextBoxColumn
//
this.messageDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.messageDataGridViewTextBoxColumn.DataPropertyName = "FormattedMessage";
cin
Added the time delta column to the interactive trace listener
r214 dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.messageDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle3;
cin
refactoring, interactive tarce log almost complete
r47 this.messageDataGridViewTextBoxColumn.HeaderText = "Message";
this.messageDataGridViewTextBoxColumn.Name = "messageDataGridViewTextBoxColumn";
this.messageDataGridViewTextBoxColumn.ReadOnly = true;
cin
Added the time delta column to the interactive trace listener
r214 this.messageDataGridViewTextBoxColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
cin
initial work on interactive logger
r45 //
// TraceForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
cin
refactoring, interactive tarce log almost complete
r47 this.ClientSize = new System.Drawing.Size(963, 504);
this.Controls.Add(this.eventsDataGrid);
cin
initial work on interactive logger
r45 this.Name = "TraceForm";
this.Text = "TraceForm";
cin
refactoring, interactive tarce log almost complete
r47 ((System.ComponentModel.ISupportInitialize)(this.eventsDataGrid)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.traceViewItemBindingSource)).EndInit();
cin
initial work on interactive logger
r45 this.ResumeLayout(false);
}
#endregion
cin
refactoring, interactive tarce log almost complete
r47 private System.Windows.Forms.DataGridView eventsDataGrid;
private System.Windows.Forms.BindingSource traceViewItemBindingSource;
private System.Windows.Forms.DataGridViewTextBoxColumn threadDataGridViewTextBoxColumn;
cin
Added the time delta column to the interactive trace listener
r214 private System.Windows.Forms.DataGridViewTextBoxColumn TimeDelta;
cin
Interactive tracing...
r48 private System.Windows.Forms.DataGridViewTextBoxColumn Channel;
cin
refactoring, interactive tarce log almost complete
r47 private System.Windows.Forms.DataGridViewTextBoxColumn messageDataGridViewTextBoxColumn;
cin
initial work on interactive logger
r45 }
}