[2790] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[5445] | 3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2790] | 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 |
|
---|
| 22 | namespace HeuristicLab.Optimizer {
|
---|
[2546] | 23 | partial class NewItemDialog {
|
---|
[2520] | 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 Windows Form 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() {
|
---|
[2546] | 47 | this.components = new System.ComponentModel.Container();
|
---|
[2520] | 48 | this.okButton = new System.Windows.Forms.Button();
|
---|
| 49 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
[2546] | 50 | this.itemsListView = new System.Windows.Forms.ListView();
|
---|
| 51 | this.nameColumnHeader = new System.Windows.Forms.ColumnHeader();
|
---|
| 52 | this.descriptioncolumnHeader = new System.Windows.Forms.ColumnHeader();
|
---|
| 53 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
[3728] | 54 | this.versionColumnHeader = new System.Windows.Forms.ColumnHeader();
|
---|
[2520] | 55 | this.SuspendLayout();
|
---|
| 56 | //
|
---|
| 57 | // okButton
|
---|
| 58 | //
|
---|
| 59 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 60 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
---|
| 61 | this.okButton.Enabled = false;
|
---|
[2546] | 62 | this.okButton.Location = new System.Drawing.Point(456, 409);
|
---|
[2520] | 63 | this.okButton.Name = "okButton";
|
---|
| 64 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
[2546] | 65 | this.okButton.TabIndex = 2;
|
---|
[2520] | 66 | this.okButton.Text = "&OK";
|
---|
| 67 | this.okButton.UseVisualStyleBackColor = true;
|
---|
[2546] | 68 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
[2520] | 69 | //
|
---|
| 70 | // cancelButton
|
---|
| 71 | //
|
---|
| 72 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 73 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
[2546] | 74 | this.cancelButton.Location = new System.Drawing.Point(537, 409);
|
---|
[2520] | 75 | this.cancelButton.Name = "cancelButton";
|
---|
| 76 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
[2546] | 77 | this.cancelButton.TabIndex = 3;
|
---|
[2520] | 78 | this.cancelButton.Text = "&Cancel";
|
---|
| 79 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
| 80 | //
|
---|
[2546] | 81 | // itemsListView
|
---|
[2520] | 82 | //
|
---|
[2546] | 83 | this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 84 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 85 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 86 | this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
| 87 | this.nameColumnHeader,
|
---|
[3728] | 88 | this.versionColumnHeader,
|
---|
[2546] | 89 | this.descriptioncolumnHeader});
|
---|
[3202] | 90 | this.itemsListView.FullRowSelect = true;
|
---|
[2546] | 91 | this.itemsListView.HideSelection = false;
|
---|
[2790] | 92 | this.itemsListView.Location = new System.Drawing.Point(12, 12);
|
---|
[2546] | 93 | this.itemsListView.MultiSelect = false;
|
---|
| 94 | this.itemsListView.Name = "itemsListView";
|
---|
[2790] | 95 | this.itemsListView.Size = new System.Drawing.Size(600, 391);
|
---|
[2546] | 96 | this.itemsListView.TabIndex = 1;
|
---|
| 97 | this.itemsListView.UseCompatibleStateImageBehavior = false;
|
---|
[2790] | 98 | this.itemsListView.View = System.Windows.Forms.View.Details;
|
---|
[2546] | 99 | this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemTypesListView_SelectedIndexChanged);
|
---|
| 100 | this.itemsListView.DoubleClick += new System.EventHandler(this.itemTypesListView_DoubleClick);
|
---|
| 101 | //
|
---|
| 102 | // nameColumnHeader
|
---|
| 103 | //
|
---|
[3728] | 104 | this.nameColumnHeader.DisplayIndex = 0;
|
---|
[2546] | 105 | this.nameColumnHeader.Text = "Name";
|
---|
[2790] | 106 | this.nameColumnHeader.Width = 91;
|
---|
[2546] | 107 | //
|
---|
| 108 | // descriptioncolumnHeader
|
---|
| 109 | //
|
---|
[3728] | 110 | this.descriptioncolumnHeader.DisplayIndex = 2;
|
---|
[2546] | 111 | this.descriptioncolumnHeader.Text = "Description";
|
---|
[2790] | 112 | this.descriptioncolumnHeader.Width = 190;
|
---|
[2546] | 113 | //
|
---|
[3728] | 114 | // versionColumnHeader
|
---|
| 115 | //
|
---|
| 116 | this.versionColumnHeader.DisplayIndex = 1;
|
---|
| 117 | this.versionColumnHeader.Text = "Version";
|
---|
| 118 | //
|
---|
[2546] | 119 | // NewItemDialog
|
---|
| 120 | //
|
---|
[2520] | 121 | this.AcceptButton = this.okButton;
|
---|
| 122 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 123 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 124 | this.CancelButton = this.cancelButton;
|
---|
[2546] | 125 | this.ClientSize = new System.Drawing.Size(624, 444);
|
---|
| 126 | this.Controls.Add(this.itemsListView);
|
---|
[2520] | 127 | this.Controls.Add(this.cancelButton);
|
---|
| 128 | this.Controls.Add(this.okButton);
|
---|
| 129 | this.MaximizeBox = false;
|
---|
| 130 | this.MinimizeBox = false;
|
---|
[2546] | 131 | this.Name = "NewItemDialog";
|
---|
| 132 | this.ShowIcon = false;
|
---|
[2520] | 133 | this.ShowInTaskbar = false;
|
---|
| 134 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
| 135 | this.Text = "New Item";
|
---|
| 136 | this.TopMost = true;
|
---|
[2546] | 137 | this.Load += new System.EventHandler(this.NewItemDialog_Load);
|
---|
| 138 | this.Shown += new System.EventHandler(this.NewItemDialog_Shown);
|
---|
[2520] | 139 | this.ResumeLayout(false);
|
---|
| 140 |
|
---|
| 141 | }
|
---|
| 142 |
|
---|
| 143 | #endregion
|
---|
| 144 |
|
---|
| 145 | private System.Windows.Forms.Button okButton;
|
---|
| 146 | private System.Windows.Forms.Button cancelButton;
|
---|
[2546] | 147 | private System.Windows.Forms.ListView itemsListView;
|
---|
| 148 | private System.Windows.Forms.ToolTip toolTip;
|
---|
| 149 | private System.Windows.Forms.ColumnHeader nameColumnHeader;
|
---|
| 150 | private System.Windows.Forms.ColumnHeader descriptioncolumnHeader;
|
---|
[3728] | 151 | private System.Windows.Forms.ColumnHeader versionColumnHeader;
|
---|
[2520] | 152 | }
|
---|
| 153 | } |
---|