Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DebugEngine/OperatorTraceView.Designer.cs @ 4904

Last change on this file since 4904 was 4904, checked in by epitzer, 14 years ago

Add operator trace view (#47)

File size: 2.7 KB
Line 
1namespace 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() {
26      this.operatorTraceGroupBox = new System.Windows.Forms.GroupBox();
27      this.listView = new System.Windows.Forms.ListView();
28      this.operatorTraceGroupBox.SuspendLayout();
29      this.SuspendLayout();
30      //
31      // operatorTraceGroupBox
32      //
33      this.operatorTraceGroupBox.Controls.Add(this.listView);
34      this.operatorTraceGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
35      this.operatorTraceGroupBox.Location = new System.Drawing.Point(0, 0);
36      this.operatorTraceGroupBox.Name = "operatorTraceGroupBox";
37      this.operatorTraceGroupBox.Size = new System.Drawing.Size(515, 405);
38      this.operatorTraceGroupBox.TabIndex = 0;
39      this.operatorTraceGroupBox.TabStop = false;
40      this.operatorTraceGroupBox.Text = "Operator Trace";
41      //
42      // listView
43      //
44      this.listView.Dock = System.Windows.Forms.DockStyle.Fill;
45      this.listView.FullRowSelect = true;
46      this.listView.Location = new System.Drawing.Point(3, 16);
47      this.listView.Name = "listView";
48      this.listView.Size = new System.Drawing.Size(509, 386);
49      this.listView.TabIndex = 0;
50      this.listView.UseCompatibleStateImageBehavior = false;
51      this.listView.View = System.Windows.Forms.View.List;
52      this.listView.ItemActivate += new System.EventHandler(this.listView_ItemActivate);
53      //
54      // OperatorTraceView
55      //
56      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
57      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
58      this.Controls.Add(this.operatorTraceGroupBox);
59      this.Name = "OperatorTraceView";
60      this.Size = new System.Drawing.Size(515, 405);
61      this.operatorTraceGroupBox.ResumeLayout(false);
62      this.ResumeLayout(false);
63
64    }
65
66    #endregion
67
68    private System.Windows.Forms.GroupBox operatorTraceGroupBox;
69    private System.Windows.Forms.ListView listView;
70  }
71}
Note: See TracBrowser for help on using the repository browser.