Mercurial > pub > ImplabNet
annotate Implab.Diagnostics.Interactive/TraceForm.Designer.cs @ 244:eee3e49dd1ff v3
working on promises
author | cin |
---|---|
date | Thu, 25 Jan 2018 19:09:16 +0300 |
parents | 9c32ef39b851 |
children |
rev | line source |
---|---|
45 | 1 namespace Implab.Diagnostics.Interactive { |
2 partial class TraceForm { | |
3 /// <summary> | |
4 /// Required designer variable. | |
5 /// </summary> | |
6 private System.ComponentModel.IContainer components = null; | |
7 | |
8 /// <summary> | |
9 /// Clean up any resources being used. | |
10 /// </summary> | |
11 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
12 protected override void Dispose(bool disposing) { | |
13 if (disposing && (components != null)) { | |
14 components.Dispose(); | |
15 } | |
16 base.Dispose(disposing); | |
17 } | |
18 | |
19 #region Windows Form Designer generated code | |
20 | |
21 /// <summary> | |
22 /// Required method for Designer support - do not modify | |
23 /// the contents of this method with the code editor. | |
24 /// </summary> | |
25 private void InitializeComponent() { | |
47 | 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 | 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 | 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 | 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 | 34 this.Channel = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
47 | 35 this.messageDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
36 ((System.ComponentModel.ISupportInitialize)(this.eventsDataGrid)).BeginInit(); | |
37 ((System.ComponentModel.ISupportInitialize)(this.traceViewItemBindingSource)).BeginInit(); | |
45 | 38 this.SuspendLayout(); |
39 // | |
47 | 40 // eventsDataGrid |
45 | 41 // |
47 | 42 this.eventsDataGrid.AllowUserToAddRows = false; |
43 this.eventsDataGrid.AllowUserToDeleteRows = false; | |
44 this.eventsDataGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | |
45 | System.Windows.Forms.AnchorStyles.Left) | |
46 | System.Windows.Forms.AnchorStyles.Right))); | |
47 this.eventsDataGrid.AutoGenerateColumns = false; | |
48 this.eventsDataGrid.BackgroundColor = System.Drawing.SystemColors.Window; | |
49 dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; | |
50 dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | |
51 dataGridViewCellStyle1.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); | |
52 dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText; | |
53 dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight; | |
54 dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText; | |
55 dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True; | |
56 this.eventsDataGrid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1; | |
57 this.eventsDataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; | |
58 this.eventsDataGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { | |
59 this.threadDataGridViewTextBoxColumn, | |
214
9c32ef39b851
Added the time delta column to the interactive trace listener
cin
parents:
48
diff
changeset
|
60 this.TimeDelta, |
48 | 61 this.Channel, |
47 | 62 this.messageDataGridViewTextBoxColumn}); |
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 | 72 this.eventsDataGrid.Location = new System.Drawing.Point(12, 12); |
73 this.eventsDataGrid.Name = "eventsDataGrid"; | |
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 | 76 this.eventsDataGrid.RowHeadersWidth = 17; |
77 this.eventsDataGrid.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.False; | |
78 this.eventsDataGrid.Size = new System.Drawing.Size(939, 480); | |
79 this.eventsDataGrid.TabIndex = 1; | |
80 this.eventsDataGrid.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.eventsDataGrid_CellFormatting); | |
81 // | |
82 // traceViewItemBindingSource | |
83 // | |
84 this.traceViewItemBindingSource.DataSource = typeof(Implab.Diagnostics.Interactive.TraceViewItem); | |
85 // | |
86 // threadDataGridViewTextBoxColumn | |
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 | 89 this.threadDataGridViewTextBoxColumn.DataPropertyName = "Thread"; |
90 this.threadDataGridViewTextBoxColumn.HeaderText = "TID"; | |
91 this.threadDataGridViewTextBoxColumn.Name = "threadDataGridViewTextBoxColumn"; | |
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 | 106 // |
48 | 107 // Channel |
108 // | |
109 this.Channel.DataPropertyName = "Channel"; | |
110 this.Channel.HeaderText = "Channel"; | |
111 this.Channel.Name = "Channel"; | |
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 | 114 // |
47 | 115 // messageDataGridViewTextBoxColumn |
116 // | |
117 this.messageDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; | |
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 | 121 this.messageDataGridViewTextBoxColumn.HeaderText = "Message"; |
122 this.messageDataGridViewTextBoxColumn.Name = "messageDataGridViewTextBoxColumn"; | |
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 | 125 // |
126 // TraceForm | |
127 // | |
128 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); | |
129 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
47 | 130 this.ClientSize = new System.Drawing.Size(963, 504); |
131 this.Controls.Add(this.eventsDataGrid); | |
45 | 132 this.Name = "TraceForm"; |
133 this.Text = "TraceForm"; | |
47 | 134 ((System.ComponentModel.ISupportInitialize)(this.eventsDataGrid)).EndInit(); |
135 ((System.ComponentModel.ISupportInitialize)(this.traceViewItemBindingSource)).EndInit(); | |
45 | 136 this.ResumeLayout(false); |
137 | |
138 } | |
139 | |
140 #endregion | |
141 | |
47 | 142 private System.Windows.Forms.DataGridView eventsDataGrid; |
143 private System.Windows.Forms.BindingSource traceViewItemBindingSource; | |
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 | 146 private System.Windows.Forms.DataGridViewTextBoxColumn Channel; |
47 | 147 private System.Windows.Forms.DataGridViewTextBoxColumn messageDataGridViewTextBoxColumn; |
45 | 148 } |
149 } |