Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/DataPreprocessingView.designer.cs @ 10925

Last change on this file since 10925 was 10904, checked in by pfleck, 10 years ago
  • changed ViewShortcutCollection(View) to ViewShortcutList(View)
File size: 5.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.DataPreprocessing.Views {
23  partial class DataPreprocessingView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataPreprocessingView));
49      this.undoButton = new System.Windows.Forms.Button();
50      this.applyInNewTabButton = new System.Windows.Forms.Button();
51      this.exportProblemButton = new System.Windows.Forms.Button();
52      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
53      this.viewShortcutListView = new HeuristicLab.DataPreprocessing.Views.ViewShortcutListView();
54      this.SuspendLayout();
55      //
56      // undoButton
57      //
58      this.undoButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Undo;
59      this.undoButton.Location = new System.Drawing.Point(64, 3);
60      this.undoButton.Name = "undoButton";
61      this.undoButton.Size = new System.Drawing.Size(24, 24);
62      this.undoButton.TabIndex = 3;
63      this.toolTip.SetToolTip(this.undoButton, "Undo");
64      this.undoButton.UseVisualStyleBackColor = true;
65      this.undoButton.Click += new System.EventHandler(this.undoButton_Click);
66      //
67      // applyInNewTabButton
68      //
69      this.applyInNewTabButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
70      this.applyInNewTabButton.Location = new System.Drawing.Point(34, 3);
71      this.applyInNewTabButton.Name = "applyInNewTabButton";
72      this.applyInNewTabButton.Size = new System.Drawing.Size(24, 24);
73      this.applyInNewTabButton.TabIndex = 2;
74      this.toolTip.SetToolTip(this.applyInNewTabButton, "Apply in new tab");
75      this.applyInNewTabButton.UseVisualStyleBackColor = true;
76      this.applyInNewTabButton.Click += new System.EventHandler(this.applyInNewTabButton_Click);
77      //
78      // exportProblemButton
79      //
80      this.exportProblemButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
81      this.exportProblemButton.Location = new System.Drawing.Point(4, 3);
82      this.exportProblemButton.Name = "exportProblemButton";
83      this.exportProblemButton.Size = new System.Drawing.Size(24, 24);
84      this.exportProblemButton.TabIndex = 1;
85      this.toolTip.SetToolTip(this.exportProblemButton, "Export problem");
86      this.exportProblemButton.UseVisualStyleBackColor = true;
87      this.exportProblemButton.Click += new System.EventHandler(this.exportProblemButton_Click);
88      //
89      // ViewShortcutListView
90      //
91      this.viewShortcutListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
92            | System.Windows.Forms.AnchorStyles.Left)
93            | System.Windows.Forms.AnchorStyles.Right)));
94      this.viewShortcutListView.Caption = "ViewShortcutCollection View";
95      this.viewShortcutListView.Content = null;
96      this.viewShortcutListView.Location = new System.Drawing.Point(4, 33);
97      this.viewShortcutListView.Name = "viewShortcutListView";
98      this.viewShortcutListView.ReadOnly = false;
99      this.viewShortcutListView.Size = new System.Drawing.Size(831, 413);
100      this.viewShortcutListView.TabIndex = 4;
101      //
102      // DataPreprocessingView
103      //
104      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
105      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
106      this.Controls.Add(this.viewShortcutListView);
107      this.Controls.Add(this.undoButton);
108      this.Controls.Add(this.applyInNewTabButton);
109      this.Controls.Add(this.exportProblemButton);
110      this.Name = "DataPreprocessingView";
111      this.Size = new System.Drawing.Size(838, 449);
112      this.ResumeLayout(false);
113
114    }
115
116    #endregion
117
118    private System.Windows.Forms.Button exportProblemButton;
119    private System.Windows.Forms.Button applyInNewTabButton;
120    private System.Windows.Forms.Button undoButton;
121    private System.Windows.Forms.ToolTip toolTip;
122    private ViewShortcutListView viewShortcutListView;
123
124  }
125}
Note: See TracBrowser for help on using the repository browser.