annotate Implab.Diagnostics.Interactive/TraceForm.Designer.cs @ 230:3e26338eb977 v2

slowly cutting off mono specific settings
author cin
date Wed, 13 Sep 2017 16:55:13 +0300
parents 9c32ef39b851
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
45
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
1 namespace Implab.Diagnostics.Interactive {
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
2 partial class TraceForm {
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
3 /// <summary>
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
4 /// Required designer variable.
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
5 /// </summary>
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
6 private System.ComponentModel.IContainer components = null;
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
7
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
8 /// <summary>
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
9 /// Clean up any resources being used.
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
10 /// </summary>
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
11 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
12 protected override void Dispose(bool disposing) {
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
13 if (disposing && (components != null)) {
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
14 components.Dispose();
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
15 }
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
16 base.Dispose(disposing);
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
17 }
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
18
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
19 #region Windows Form Designer generated code
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
20
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
21 /// <summary>
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
22 /// Required method for Designer support - do not modify
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
23 /// the contents of this method with the code editor.
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
24 /// </summary>
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
25 private void InitializeComponent() {
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
26 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
27 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
28 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
29 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
30 this.eventsDataGrid = new System.Windows.Forms.DataGridView();
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
31 this.traceViewItemBindingSource = new System.Windows.Forms.BindingSource();
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
32 this.threadDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
33 this.TimeDelta = new System.Windows.Forms.DataGridViewTextBoxColumn();
48
d9d794b61bb9 Interactive tracing
cin
parents: 47
diff changeset
34 this.Channel = new System.Windows.Forms.DataGridViewTextBoxColumn();
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
35 this.messageDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
36 ((System.ComponentModel.ISupportInitialize)(this.eventsDataGrid)).BeginInit();
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
37 ((System.ComponentModel.ISupportInitialize)(this.traceViewItemBindingSource)).BeginInit();
45
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
38 this.SuspendLayout();
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
39 //
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
40 // eventsDataGrid
45
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
41 //
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
42 this.eventsDataGrid.AllowUserToAddRows = false;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
43 this.eventsDataGrid.AllowUserToDeleteRows = false;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
44 this.eventsDataGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
45 | System.Windows.Forms.AnchorStyles.Left)
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
46 | System.Windows.Forms.AnchorStyles.Right)));
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
47 this.eventsDataGrid.AutoGenerateColumns = false;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
48 this.eventsDataGrid.BackgroundColor = System.Drawing.SystemColors.Window;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
49 dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
50 dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
51 dataGridViewCellStyle1.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
52 dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
53 dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
54 dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
55 dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
56 this.eventsDataGrid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
57 this.eventsDataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
58 this.eventsDataGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
59 this.threadDataGridViewTextBoxColumn,
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
60 this.TimeDelta,
48
d9d794b61bb9 Interactive tracing
cin
parents: 47
diff changeset
61 this.Channel,
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
62 this.messageDataGridViewTextBoxColumn});
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
63 this.eventsDataGrid.DataSource = this.traceViewItemBindingSource;
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
64 dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
65 dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
66 dataGridViewCellStyle4.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
67 dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
68 dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
69 dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
70 dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
71 this.eventsDataGrid.DefaultCellStyle = dataGridViewCellStyle4;
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
72 this.eventsDataGrid.Location = new System.Drawing.Point(12, 12);
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
73 this.eventsDataGrid.Name = "eventsDataGrid";
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
74 this.eventsDataGrid.ReadOnly = true;
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
75 this.eventsDataGrid.RowHeadersVisible = false;
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
76 this.eventsDataGrid.RowHeadersWidth = 17;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
77 this.eventsDataGrid.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.False;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
78 this.eventsDataGrid.Size = new System.Drawing.Size(939, 480);
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
79 this.eventsDataGrid.TabIndex = 1;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
80 this.eventsDataGrid.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.eventsDataGrid_CellFormatting);
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
81 //
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
82 // traceViewItemBindingSource
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
83 //
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
84 this.traceViewItemBindingSource.DataSource = typeof(Implab.Diagnostics.Interactive.TraceViewItem);
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
85 //
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
86 // threadDataGridViewTextBoxColumn
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
87 //
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
88 this.threadDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
89 this.threadDataGridViewTextBoxColumn.DataPropertyName = "Thread";
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
90 this.threadDataGridViewTextBoxColumn.HeaderText = "TID";
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
91 this.threadDataGridViewTextBoxColumn.Name = "threadDataGridViewTextBoxColumn";
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
92 this.threadDataGridViewTextBoxColumn.ReadOnly = true;
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
93 this.threadDataGridViewTextBoxColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
94 this.threadDataGridViewTextBoxColumn.Width = 32;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
95 //
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
96 // TimeDelta
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
97 //
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
98 this.TimeDelta.DataPropertyName = "TimeDelta";
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
99 dataGridViewCellStyle2.Format = "\'+\' 0 \'ms\'";
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
100 dataGridViewCellStyle2.NullValue = null;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
101 this.TimeDelta.DefaultCellStyle = dataGridViewCellStyle2;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
102 this.TimeDelta.HeaderText = "TimeDelta";
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
103 this.TimeDelta.Name = "TimeDelta";
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
104 this.TimeDelta.ReadOnly = true;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
105 this.TimeDelta.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
106 //
48
d9d794b61bb9 Interactive tracing
cin
parents: 47
diff changeset
107 // Channel
d9d794b61bb9 Interactive tracing
cin
parents: 47
diff changeset
108 //
d9d794b61bb9 Interactive tracing
cin
parents: 47
diff changeset
109 this.Channel.DataPropertyName = "Channel";
d9d794b61bb9 Interactive tracing
cin
parents: 47
diff changeset
110 this.Channel.HeaderText = "Channel";
d9d794b61bb9 Interactive tracing
cin
parents: 47
diff changeset
111 this.Channel.Name = "Channel";
d9d794b61bb9 Interactive tracing
cin
parents: 47
diff changeset
112 this.Channel.ReadOnly = true;
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
113 this.Channel.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
48
d9d794b61bb9 Interactive tracing
cin
parents: 47
diff changeset
114 //
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
115 // messageDataGridViewTextBoxColumn
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
116 //
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
117 this.messageDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
118 this.messageDataGridViewTextBoxColumn.DataPropertyName = "FormattedMessage";
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
119 dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
120 this.messageDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle3;
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
121 this.messageDataGridViewTextBoxColumn.HeaderText = "Message";
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
122 this.messageDataGridViewTextBoxColumn.Name = "messageDataGridViewTextBoxColumn";
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
123 this.messageDataGridViewTextBoxColumn.ReadOnly = true;
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
124 this.messageDataGridViewTextBoxColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
45
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
125 //
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
126 // TraceForm
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
127 //
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
128 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
129 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
130 this.ClientSize = new System.Drawing.Size(963, 504);
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
131 this.Controls.Add(this.eventsDataGrid);
45
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
132 this.Name = "TraceForm";
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
133 this.Text = "TraceForm";
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
134 ((System.ComponentModel.ISupportInitialize)(this.eventsDataGrid)).EndInit();
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
135 ((System.ComponentModel.ISupportInitialize)(this.traceViewItemBindingSource)).EndInit();
45
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
136 this.ResumeLayout(false);
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
137
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
138 }
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
139
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
140 #endregion
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
141
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
142 private System.Windows.Forms.DataGridView eventsDataGrid;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
143 private System.Windows.Forms.BindingSource traceViewItemBindingSource;
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
144 private System.Windows.Forms.DataGridViewTextBoxColumn threadDataGridViewTextBoxColumn;
214
9c32ef39b851 Added the time delta column to the interactive trace listener
cin
parents: 48
diff changeset
145 private System.Windows.Forms.DataGridViewTextBoxColumn TimeDelta;
48
d9d794b61bb9 Interactive tracing
cin
parents: 47
diff changeset
146 private System.Windows.Forms.DataGridViewTextBoxColumn Channel;
47
b181f7bcb259 refactoring, interactive tarce log almost complete
cin
parents: 45
diff changeset
147 private System.Windows.Forms.DataGridViewTextBoxColumn messageDataGridViewTextBoxColumn;
45
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
148 }
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
149 }