Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataPreprocessingView.designer.cs @ 10247

Last change on this file since 10247 was 10247, checked in by psteiner, 10 years ago

Added Try Out Algorithmn button and renamed items

File size: 5.6 KB
Line 
1namespace HeuristicLab.DataPreprocessing {
2  partial class DataPreprocessingView {
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.splitContainer1 = new System.Windows.Forms.SplitContainer();
27      this.contentListView = new System.Windows.Forms.ListView();
28      this.tryOutAlgorithmButton = new System.Windows.Forms.Button();
29      this.saveButton = new System.Windows.Forms.Button();
30      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
31      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
32      this.splitContainer1.Panel1.SuspendLayout();
33      this.splitContainer1.Panel2.SuspendLayout();
34      this.splitContainer1.SuspendLayout();
35      this.SuspendLayout();
36      //
37      // splitContainer1
38      //
39      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
40      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
41      this.splitContainer1.Name = "splitContainer1";
42      //
43      // splitContainer1.Panel1
44      //
45      this.splitContainer1.Panel1.Controls.Add(this.contentListView);
46      //
47      // splitContainer1.Panel2
48      //
49      this.splitContainer1.Panel2.Controls.Add(this.viewHost);
50      this.splitContainer1.Panel2.Controls.Add(this.saveButton);
51      this.splitContainer1.Panel2.Controls.Add(this.tryOutAlgorithmButton);
52      this.splitContainer1.Size = new System.Drawing.Size(838, 449);
53      this.splitContainer1.SplitterDistance = 278;
54      this.splitContainer1.TabIndex = 0;
55      //
56      // contentListView
57      //
58      this.contentListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
59            | System.Windows.Forms.AnchorStyles.Left)
60            | System.Windows.Forms.AnchorStyles.Right)));
61      this.contentListView.Location = new System.Drawing.Point(12, 15);
62      this.contentListView.Name = "contentListView";
63      this.contentListView.Size = new System.Drawing.Size(254, 389);
64      this.contentListView.TabIndex = 0;
65      this.contentListView.UseCompatibleStateImageBehavior = false;
66      this.contentListView.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
67      this.contentListView.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
68      //
69      // tryOutAlgorithmButton
70      //
71      this.tryOutAlgorithmButton.Location = new System.Drawing.Point(443, 410);
72      this.tryOutAlgorithmButton.Name = "tryOutAlgorithmButton";
73      this.tryOutAlgorithmButton.Size = new System.Drawing.Size(97, 23);
74      this.tryOutAlgorithmButton.TabIndex = 2;
75      this.tryOutAlgorithmButton.Text = "Try Out Algorithm";
76      this.tryOutAlgorithmButton.UseVisualStyleBackColor = true;
77      this.tryOutAlgorithmButton.Click += new System.EventHandler(this.tryOutAlgorithmButton_Click);
78      //
79      // saveButton
80      //
81      this.saveButton.Location = new System.Drawing.Point(343, 410);
82      this.saveButton.Name = "saveButton";
83      this.saveButton.Size = new System.Drawing.Size(75, 23);
84      this.saveButton.TabIndex = 3;
85      this.saveButton.Text = "Save";
86      this.saveButton.UseVisualStyleBackColor = true;
87      //
88      // viewHost
89      //
90      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
91            | System.Windows.Forms.AnchorStyles.Left)
92            | System.Windows.Forms.AnchorStyles.Right)));
93      this.viewHost.Caption = "View";
94      this.viewHost.Content = null;
95      this.viewHost.Enabled = false;
96      this.viewHost.Location = new System.Drawing.Point(14, 15);
97      this.viewHost.Name = "viewHost";
98      this.viewHost.ReadOnly = false;
99      this.viewHost.Size = new System.Drawing.Size(526, 389);
100      this.viewHost.TabIndex = 4;
101      this.viewHost.ViewsLabelVisible = true;
102      this.viewHost.ViewType = null;
103      //
104      // DataPreprocessingView
105      //
106      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
108      this.Controls.Add(this.splitContainer1);
109      this.Name = "DataPreprocessingView";
110      this.Size = new System.Drawing.Size(838, 449);
111      this.splitContainer1.Panel1.ResumeLayout(false);
112      this.splitContainer1.Panel2.ResumeLayout(false);
113      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
114      this.splitContainer1.ResumeLayout(false);
115      this.ResumeLayout(false);
116
117    }
118
119    #endregion
120
121    private System.Windows.Forms.SplitContainer splitContainer1;
122    private System.Windows.Forms.ListView contentListView;
123    private System.Windows.Forms.Button saveButton;
124    private System.Windows.Forms.Button tryOutAlgorithmButton;
125    private MainForm.WindowsForms.ViewHost viewHost;
126
127  }
128}
Note: See TracBrowser for help on using the repository browser.