Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HL-3.2-MonoMigration/HeuristicLab.CEDMA.Charting/ModelView.Designer.cs @ 755

Last change on this file since 755 was 576, checked in by gkronber, 16 years ago

added functionality to open the algorithm that generated any model

File size: 3.9 KB
Line 
1namespace HeuristicLab.CEDMA.Charting {
2  partial class ModelView {
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.splitContainer = new System.Windows.Forms.SplitContainer();
27      this.lowerSplitContainer = new System.Windows.Forms.SplitContainer();
28      this.algoButton = new System.Windows.Forms.Button();
29      this.splitContainer.Panel2.SuspendLayout();
30      this.splitContainer.SuspendLayout();
31      this.lowerSplitContainer.SuspendLayout();
32      this.SuspendLayout();
33      //
34      // splitContainer
35      //
36      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
37                  | System.Windows.Forms.AnchorStyles.Left)
38                  | System.Windows.Forms.AnchorStyles.Right)));
39      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
40      this.splitContainer.Location = new System.Drawing.Point(0, 0);
41      this.splitContainer.Name = "splitContainer";
42      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
43      //
44      // splitContainer.Panel2
45      //
46      this.splitContainer.Panel2.Controls.Add(this.lowerSplitContainer);
47      this.splitContainer.Size = new System.Drawing.Size(450, 427);
48      this.splitContainer.SplitterDistance = 185;
49      this.splitContainer.TabIndex = 0;
50      //
51      // lowerSplitContainer
52      //
53      this.lowerSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
54      this.lowerSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
55      this.lowerSplitContainer.Location = new System.Drawing.Point(0, 0);
56      this.lowerSplitContainer.Name = "lowerSplitContainer";
57      this.lowerSplitContainer.Size = new System.Drawing.Size(450, 238);
58      this.lowerSplitContainer.SplitterDistance = 232;
59      this.lowerSplitContainer.TabIndex = 0;
60      //
61      // algoButton
62      //
63      this.algoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
64      this.algoButton.Location = new System.Drawing.Point(352, 433);
65      this.algoButton.Name = "algoButton";
66      this.algoButton.Size = new System.Drawing.Size(95, 23);
67      this.algoButton.TabIndex = 1;
68      this.algoButton.Text = "Open algorithm";
69      this.algoButton.UseVisualStyleBackColor = true;
70      this.algoButton.Click += new System.EventHandler(this.algoButton_Click);
71      //
72      // ModelView
73      //
74      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
75      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
76      this.Controls.Add(this.algoButton);
77      this.Controls.Add(this.splitContainer);
78      this.Name = "ModelView";
79      this.Size = new System.Drawing.Size(450, 459);
80      this.splitContainer.Panel2.ResumeLayout(false);
81      this.splitContainer.ResumeLayout(false);
82      this.lowerSplitContainer.ResumeLayout(false);
83      this.ResumeLayout(false);
84
85    }
86
87    #endregion
88
89    private System.Windows.Forms.SplitContainer splitContainer;
90    private System.Windows.Forms.SplitContainer lowerSplitContainer;
91    private System.Windows.Forms.Button algoButton;
92
93  }
94}
Note: See TracBrowser for help on using the repository browser.