1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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 |
|
---|
22 | namespace HeuristicLab.PluginInfrastructure.GUI {
|
---|
23 | partial class PluginSourceEditor {
|
---|
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() {
|
---|
47 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PluginSourceEditor));
|
---|
48 | this.saveButton = new System.Windows.Forms.Button();
|
---|
49 | this.sourcesTextBox = new System.Windows.Forms.TextBox();
|
---|
50 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
51 | this.SuspendLayout();
|
---|
52 | //
|
---|
53 | // saveButton
|
---|
54 | //
|
---|
55 | this.saveButton.Location = new System.Drawing.Point(194, 198);
|
---|
56 | this.saveButton.Name = "saveButton";
|
---|
57 | this.saveButton.Size = new System.Drawing.Size(75, 23);
|
---|
58 | this.saveButton.TabIndex = 0;
|
---|
59 | this.saveButton.Text = "Save";
|
---|
60 | this.saveButton.UseVisualStyleBackColor = true;
|
---|
61 | this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
|
---|
62 | //
|
---|
63 | // sourcesTextBox
|
---|
64 | //
|
---|
65 | this.sourcesTextBox.Location = new System.Drawing.Point(12, 12);
|
---|
66 | this.sourcesTextBox.Multiline = true;
|
---|
67 | this.sourcesTextBox.Name = "sourcesTextBox";
|
---|
68 | this.sourcesTextBox.Size = new System.Drawing.Size(338, 180);
|
---|
69 | this.sourcesTextBox.TabIndex = 1;
|
---|
70 | //
|
---|
71 | // cancelButton
|
---|
72 | //
|
---|
73 | this.cancelButton.Location = new System.Drawing.Point(275, 198);
|
---|
74 | this.cancelButton.Name = "cancelButton";
|
---|
75 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
76 | this.cancelButton.TabIndex = 2;
|
---|
77 | this.cancelButton.Text = "Cancel";
|
---|
78 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
79 | this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
---|
80 | //
|
---|
81 | // PluginSourceEditor
|
---|
82 | //
|
---|
83 | this.ClientSize = new System.Drawing.Size(362, 233);
|
---|
84 | this.Controls.Add(this.cancelButton);
|
---|
85 | this.Controls.Add(this.sourcesTextBox);
|
---|
86 | this.Controls.Add(this.saveButton);
|
---|
87 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
---|
88 | this.Name = "PluginSourceEditor";
|
---|
89 | this.Text = "Edit plugin sources";
|
---|
90 | this.ResumeLayout(false);
|
---|
91 | this.PerformLayout();
|
---|
92 |
|
---|
93 | }
|
---|
94 |
|
---|
95 | #endregion
|
---|
96 |
|
---|
97 | private System.Windows.Forms.Button saveButton;
|
---|
98 | private System.Windows.Forms.TextBox sourcesTextBox;
|
---|
99 | private System.Windows.Forms.Button cancelButton;
|
---|
100 | }
|
---|
101 | }
|
---|