[4904] | 1 | namespace HeuristicLab.DebugEngine {
|
---|
| 2 | partial class OperatorTraceView {
|
---|
| 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 Component 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() {
|
---|
[4909] | 26 | this.components = new System.ComponentModel.Container();
|
---|
[4904] | 27 | this.operatorTraceGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 28 | this.listView = new System.Windows.Forms.ListView();
|
---|
[4909] | 29 | this.listViewColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
| 30 | this.imageList = new System.Windows.Forms.ImageList(this.components);
|
---|
[4904] | 31 | this.operatorTraceGroupBox.SuspendLayout();
|
---|
| 32 | this.SuspendLayout();
|
---|
| 33 | //
|
---|
| 34 | // operatorTraceGroupBox
|
---|
| 35 | //
|
---|
| 36 | this.operatorTraceGroupBox.Controls.Add(this.listView);
|
---|
| 37 | this.operatorTraceGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 38 | this.operatorTraceGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
| 39 | this.operatorTraceGroupBox.Name = "operatorTraceGroupBox";
|
---|
[4909] | 40 | this.operatorTraceGroupBox.Size = new System.Drawing.Size(152, 489);
|
---|
[4904] | 41 | this.operatorTraceGroupBox.TabIndex = 0;
|
---|
| 42 | this.operatorTraceGroupBox.TabStop = false;
|
---|
| 43 | this.operatorTraceGroupBox.Text = "Operator Trace";
|
---|
| 44 | //
|
---|
| 45 | // listView
|
---|
| 46 | //
|
---|
[4909] | 47 | this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
| 48 | this.listViewColumnHeader});
|
---|
[4904] | 49 | this.listView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
[4909] | 50 | this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
---|
| 51 | this.listView.HideSelection = false;
|
---|
[4904] | 52 | this.listView.Location = new System.Drawing.Point(3, 16);
|
---|
| 53 | this.listView.Name = "listView";
|
---|
[4909] | 54 | this.listView.ShowItemToolTips = true;
|
---|
| 55 | this.listView.Size = new System.Drawing.Size(146, 470);
|
---|
| 56 | this.listView.SmallImageList = this.imageList;
|
---|
[4904] | 57 | this.listView.TabIndex = 0;
|
---|
| 58 | this.listView.UseCompatibleStateImageBehavior = false;
|
---|
[4909] | 59 | this.listView.View = System.Windows.Forms.View.Details;
|
---|
[4904] | 60 | this.listView.ItemActivate += new System.EventHandler(this.listView_ItemActivate);
|
---|
| 61 | //
|
---|
[4909] | 62 | // imageList
|
---|
| 63 | //
|
---|
| 64 | this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
| 65 | this.imageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
| 66 | this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
| 67 | //
|
---|
[4904] | 68 | // OperatorTraceView
|
---|
| 69 | //
|
---|
| 70 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 71 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 72 | this.Controls.Add(this.operatorTraceGroupBox);
|
---|
| 73 | this.Name = "OperatorTraceView";
|
---|
[4909] | 74 | this.Size = new System.Drawing.Size(152, 489);
|
---|
[4904] | 75 | this.operatorTraceGroupBox.ResumeLayout(false);
|
---|
| 76 | this.ResumeLayout(false);
|
---|
| 77 |
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | #endregion
|
---|
| 81 |
|
---|
| 82 | private System.Windows.Forms.GroupBox operatorTraceGroupBox;
|
---|
| 83 | private System.Windows.Forms.ListView listView;
|
---|
[4909] | 84 | private System.Windows.Forms.ImageList imageList;
|
---|
| 85 | private System.Windows.Forms.ColumnHeader listViewColumnHeader;
|
---|
[4904] | 86 | }
|
---|
| 87 | }
|
---|