[10539] | 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
|
---|
[10558] | 21 |
|
---|
| 22 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
[10239] | 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() {
|
---|
[10313] | 47 | this.components = new System.ComponentModel.Container();
|
---|
[10550] | 48 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataPreprocessingView));
|
---|
[10313] | 49 | this.undoButton = new System.Windows.Forms.Button();
|
---|
[10342] | 50 | this.applyInNewTabButton = new System.Windows.Forms.Button();
|
---|
| 51 | this.exportProblemButton = new System.Windows.Forms.Button();
|
---|
[10314] | 52 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
[10614] | 53 | this.viewShortcutCollectionView = new HeuristicLab.DataPreprocessing.Views.ViewShortcutCollectionView();
|
---|
[10239] | 54 | this.SuspendLayout();
|
---|
| 55 | //
|
---|
[10313] | 56 | // undoButton
|
---|
| 57 | //
|
---|
[10554] | 58 | this.undoButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Undo;
|
---|
[10614] | 59 | this.undoButton.Location = new System.Drawing.Point(64, 3);
|
---|
[10313] | 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;
|
---|
[10550] | 65 | this.undoButton.Click += new System.EventHandler(this.undoButton_Click);
|
---|
[10313] | 66 | //
|
---|
[10342] | 67 | // applyInNewTabButton
|
---|
[10313] | 68 | //
|
---|
[10554] | 69 | this.applyInNewTabButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
|
---|
[10614] | 70 | this.applyInNewTabButton.Location = new System.Drawing.Point(34, 3);
|
---|
[10342] | 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);
|
---|
[10313] | 77 | //
|
---|
[10342] | 78 | // exportProblemButton
|
---|
[10313] | 79 | //
|
---|
[10554] | 80 | this.exportProblemButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
|
---|
[10614] | 81 | this.exportProblemButton.Location = new System.Drawing.Point(4, 3);
|
---|
[10342] | 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);
|
---|
[10313] | 88 | //
|
---|
[10614] | 89 | // viewShortcutCollectionView
|
---|
[10319] | 90 | //
|
---|
[10614] | 91 | this.viewShortcutCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[10554] | 92 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
[10319] | 93 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[10614] | 94 | this.viewShortcutCollectionView.Caption = "ViewShortcutCollection View";
|
---|
| 95 | this.viewShortcutCollectionView.Content = null;
|
---|
| 96 | this.viewShortcutCollectionView.Location = new System.Drawing.Point(4, 33);
|
---|
| 97 | this.viewShortcutCollectionView.Name = "viewShortcutCollectionView";
|
---|
[10625] | 98 | this.viewShortcutCollectionView.ReadOnly = false;
|
---|
[10614] | 99 | this.viewShortcutCollectionView.ShowDetails = true;
|
---|
| 100 | this.viewShortcutCollectionView.Size = new System.Drawing.Size(831, 413);
|
---|
| 101 | this.viewShortcutCollectionView.TabIndex = 4;
|
---|
[10319] | 102 | //
|
---|
[10239] | 103 | // DataPreprocessingView
|
---|
| 104 | //
|
---|
| 105 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 106 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[10614] | 107 | this.Controls.Add(this.viewShortcutCollectionView);
|
---|
| 108 | this.Controls.Add(this.undoButton);
|
---|
| 109 | this.Controls.Add(this.applyInNewTabButton);
|
---|
| 110 | this.Controls.Add(this.exportProblemButton);
|
---|
[10239] | 111 | this.Name = "DataPreprocessingView";
|
---|
[10247] | 112 | this.Size = new System.Drawing.Size(838, 449);
|
---|
[10239] | 113 | this.ResumeLayout(false);
|
---|
| 114 |
|
---|
| 115 | }
|
---|
| 116 |
|
---|
| 117 | #endregion
|
---|
| 118 |
|
---|
[10342] | 119 | private System.Windows.Forms.Button exportProblemButton;
|
---|
| 120 | private System.Windows.Forms.Button applyInNewTabButton;
|
---|
[10314] | 121 | private System.Windows.Forms.Button undoButton;
|
---|
| 122 | private System.Windows.Forms.ToolTip toolTip;
|
---|
[10614] | 123 | private ViewShortcutCollectionView viewShortcutCollectionView;
|
---|
[10239] | 124 |
|
---|
| 125 | }
|
---|
| 126 | }
|
---|