Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Tracking/SymbolicDataAnalysisExpressionLineageExplorerView.Designer.cs @ 10746

Last change on this file since 10746 was 10746, checked in by bburlacu, 10 years ago

#1772: Small improvements to FragmentGraphView, moved tracking classes to separate folder.

File size: 3.4 KB
RevLine 
[10514]1namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
2  partial class SymbolicDataAnalysisExpressionLineageExplorerView {
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.treeView = new System.Windows.Forms.TreeView();
[10655]27      this.symbolicExpressionChartControl = new HeuristicLab.Problems.DataAnalysis.Symbolic.Views.SymbolicExpressionChartControl();
[10514]28      this.SuspendLayout();
29      //
30      // treeView
31      //
[10655]32      this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
[10514]33            | System.Windows.Forms.AnchorStyles.Left)));
34      this.treeView.Location = new System.Drawing.Point(3, 3);
35      this.treeView.Name = "treeView";
36      this.treeView.Size = new System.Drawing.Size(167, 590);
37      this.treeView.TabIndex = 0;
38      this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
39      //
[10655]40      // symbolicExpressionChartControl
[10514]41      //
[10655]42      this.symbolicExpressionChartControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
43            | System.Windows.Forms.AnchorStyles.Left)
[10514]44            | System.Windows.Forms.AnchorStyles.Right)));
[10655]45      this.symbolicExpressionChartControl.AutoSize = true;
46      this.symbolicExpressionChartControl.BackColor = System.Drawing.SystemColors.Control;
47      this.symbolicExpressionChartControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
48      this.symbolicExpressionChartControl.Chart = null;
49      this.symbolicExpressionChartControl.Location = new System.Drawing.Point(176, 3);
50      this.symbolicExpressionChartControl.Name = "symbolicExpressionChartControl";
51      this.symbolicExpressionChartControl.ScaleOnResize = true;
52      this.symbolicExpressionChartControl.Size = new System.Drawing.Size(657, 593);
53      this.symbolicExpressionChartControl.TabIndex = 1;
[10514]54      //
55      // SymbolicDataAnalysisExpressionLineageExplorerView
56      //
57      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
58      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[10655]59      this.Controls.Add(this.symbolicExpressionChartControl);
[10514]60      this.Controls.Add(this.treeView);
61      this.DoubleBuffered = true;
62      this.Name = "SymbolicDataAnalysisExpressionLineageExplorerView";
63      this.Size = new System.Drawing.Size(836, 596);
64      this.ResumeLayout(false);
65      this.PerformLayout();
66
67    }
68
69    #endregion
70
71    private System.Windows.Forms.TreeView treeView;
[10655]72    private SymbolicExpressionChartControl symbolicExpressionChartControl;
[10514]73  }
74}
Note: See TracBrowser for help on using the repository browser.