1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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.Clients.Hive.Views {
|
---|
23 | partial class HiveInformationDialog {
|
---|
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(HiveInformationDialog));
|
---|
48 | this.richTextBox = new System.Windows.Forms.RichTextBox();
|
---|
49 | this.okButton = new System.Windows.Forms.Button();
|
---|
50 | this.panel = new System.Windows.Forms.Panel();
|
---|
51 | this.label = new System.Windows.Forms.Label();
|
---|
52 | this.panel.SuspendLayout();
|
---|
53 | this.SuspendLayout();
|
---|
54 | //
|
---|
55 | // richTextBox
|
---|
56 | //
|
---|
57 | this.richTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
58 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
59 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
60 | this.richTextBox.BackColor = System.Drawing.Color.White;
|
---|
61 | this.richTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
---|
62 | this.richTextBox.Cursor = System.Windows.Forms.Cursors.Default;
|
---|
63 | this.richTextBox.Location = new System.Drawing.Point(95, 12);
|
---|
64 | this.richTextBox.Name = "richTextBox";
|
---|
65 | this.richTextBox.ReadOnly = true;
|
---|
66 | this.richTextBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
|
---|
67 | this.richTextBox.Size = new System.Drawing.Size(422, 137);
|
---|
68 | this.richTextBox.TabIndex = 1;
|
---|
69 | this.richTextBox.Text = resources.GetString("richTextBox.Text");
|
---|
70 | this.richTextBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.richTextBox1_LinkClicked);
|
---|
71 | //
|
---|
72 | // okButton
|
---|
73 | //
|
---|
74 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
75 | this.okButton.Location = new System.Drawing.Point(442, 170);
|
---|
76 | this.okButton.Name = "okButton";
|
---|
77 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
78 | this.okButton.TabIndex = 0;
|
---|
79 | this.okButton.Text = "&OK";
|
---|
80 | this.okButton.UseVisualStyleBackColor = true;
|
---|
81 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
82 | //
|
---|
83 | // panel
|
---|
84 | //
|
---|
85 | this.panel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
86 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
87 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
88 | this.panel.BackColor = System.Drawing.SystemColors.Window;
|
---|
89 | this.panel.Controls.Add(this.label);
|
---|
90 | this.panel.Controls.Add(this.richTextBox);
|
---|
91 | this.panel.Location = new System.Drawing.Point(0, 0);
|
---|
92 | this.panel.Name = "panel";
|
---|
93 | this.panel.Size = new System.Drawing.Size(529, 164);
|
---|
94 | this.panel.TabIndex = 1;
|
---|
95 | //
|
---|
96 | // label
|
---|
97 | //
|
---|
98 | this.label.Anchor = System.Windows.Forms.AnchorStyles.Left;
|
---|
99 | this.label.Location = new System.Drawing.Point(24, 58);
|
---|
100 | this.label.Name = "label";
|
---|
101 | this.label.Size = new System.Drawing.Size(48, 48);
|
---|
102 | this.label.TabIndex = 0;
|
---|
103 | //
|
---|
104 | // HiveInformationDialog
|
---|
105 | //
|
---|
106 | this.AcceptButton = this.okButton;
|
---|
107 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
108 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
109 | this.ClientSize = new System.Drawing.Size(529, 205);
|
---|
110 | this.Controls.Add(this.panel);
|
---|
111 | this.Controls.Add(this.okButton);
|
---|
112 | this.MaximizeBox = false;
|
---|
113 | this.MinimizeBox = false;
|
---|
114 | this.Name = "HiveInformationDialog";
|
---|
115 | this.ShowIcon = false;
|
---|
116 | this.ShowInTaskbar = false;
|
---|
117 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
118 | this.Text = "HeuristicLab Hive";
|
---|
119 | this.TopMost = true;
|
---|
120 | this.panel.ResumeLayout(false);
|
---|
121 | this.ResumeLayout(false);
|
---|
122 |
|
---|
123 | }
|
---|
124 |
|
---|
125 | #endregion
|
---|
126 |
|
---|
127 | private System.Windows.Forms.RichTextBox richTextBox;
|
---|
128 | private System.Windows.Forms.Button okButton;
|
---|
129 | private System.Windows.Forms.Panel panel;
|
---|
130 | private System.Windows.Forms.Label label;
|
---|
131 | }
|
---|
132 | } |
---|