1 | namespace HeuristicLab.Clients.Hive.Views {
|
---|
2 | partial class HiveInformationDialog {
|
---|
3 | /// <summary>
|
---|
4 | /// Required designer variable.
|
---|
5 | /// </summary>
|
---|
6 | private System.ComponentModel.IContainer components = null;
|
---|
7 |
|
---|
8 | /// <summary>
|
---|
9 | /// Clean up any resources being used.
|
---|
10 | /// </summary>
|
---|
11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
12 | protected override void Dispose(bool disposing) {
|
---|
13 | if (disposing && (components != null)) {
|
---|
14 | components.Dispose();
|
---|
15 | }
|
---|
16 | base.Dispose(disposing);
|
---|
17 | }
|
---|
18 |
|
---|
19 | #region Windows Form Designer generated code
|
---|
20 |
|
---|
21 | /// <summary>
|
---|
22 | /// Required method for Designer support - do not modify
|
---|
23 | /// the contents of this method with the code editor.
|
---|
24 | /// </summary>
|
---|
25 | private void InitializeComponent() {
|
---|
26 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiveInformationDialog));
|
---|
27 | this.richTextBox = new System.Windows.Forms.RichTextBox();
|
---|
28 | this.okButton = new System.Windows.Forms.Button();
|
---|
29 | this.panel = new System.Windows.Forms.Panel();
|
---|
30 | this.label = new System.Windows.Forms.Label();
|
---|
31 | this.panel.SuspendLayout();
|
---|
32 | this.SuspendLayout();
|
---|
33 | //
|
---|
34 | // richTextBox
|
---|
35 | //
|
---|
36 | this.richTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
37 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
38 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
39 | this.richTextBox.BackColor = System.Drawing.Color.White;
|
---|
40 | this.richTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
---|
41 | this.richTextBox.Cursor = System.Windows.Forms.Cursors.Default;
|
---|
42 | this.richTextBox.Location = new System.Drawing.Point(95, 12);
|
---|
43 | this.richTextBox.Name = "richTextBox";
|
---|
44 | this.richTextBox.ReadOnly = true;
|
---|
45 | this.richTextBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
|
---|
46 | this.richTextBox.Size = new System.Drawing.Size(422, 137);
|
---|
47 | this.richTextBox.TabIndex = 1;
|
---|
48 | this.richTextBox.Text = resources.GetString("richTextBox.Text");
|
---|
49 | this.richTextBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.richTextBox1_LinkClicked);
|
---|
50 | //
|
---|
51 | // okButton
|
---|
52 | //
|
---|
53 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
54 | this.okButton.Location = new System.Drawing.Point(442, 170);
|
---|
55 | this.okButton.Name = "okButton";
|
---|
56 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
57 | this.okButton.TabIndex = 0;
|
---|
58 | this.okButton.Text = "&OK";
|
---|
59 | this.okButton.UseVisualStyleBackColor = true;
|
---|
60 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
61 | //
|
---|
62 | // panel
|
---|
63 | //
|
---|
64 | this.panel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
65 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
66 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
67 | this.panel.BackColor = System.Drawing.SystemColors.Window;
|
---|
68 | this.panel.Controls.Add(this.label);
|
---|
69 | this.panel.Controls.Add(this.richTextBox);
|
---|
70 | this.panel.Location = new System.Drawing.Point(0, 0);
|
---|
71 | this.panel.Name = "panel";
|
---|
72 | this.panel.Size = new System.Drawing.Size(529, 164);
|
---|
73 | this.panel.TabIndex = 1;
|
---|
74 | //
|
---|
75 | // label
|
---|
76 | //
|
---|
77 | this.label.Anchor = System.Windows.Forms.AnchorStyles.Left;
|
---|
78 | this.label.Location = new System.Drawing.Point(24, 58);
|
---|
79 | this.label.Name = "label";
|
---|
80 | this.label.Size = new System.Drawing.Size(48, 48);
|
---|
81 | this.label.TabIndex = 0;
|
---|
82 | //
|
---|
83 | // HiveInformationDialog
|
---|
84 | //
|
---|
85 | this.AcceptButton = this.okButton;
|
---|
86 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
87 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
88 | this.ClientSize = new System.Drawing.Size(529, 205);
|
---|
89 | this.Controls.Add(this.panel);
|
---|
90 | this.Controls.Add(this.okButton);
|
---|
91 | this.MaximizeBox = false;
|
---|
92 | this.MinimizeBox = false;
|
---|
93 | this.Name = "HiveInformationDialog";
|
---|
94 | this.ShowIcon = false;
|
---|
95 | this.ShowInTaskbar = false;
|
---|
96 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
97 | this.Text = "HeuristicLab Hive";
|
---|
98 | this.TopMost = true;
|
---|
99 | this.panel.ResumeLayout(false);
|
---|
100 | this.ResumeLayout(false);
|
---|
101 |
|
---|
102 | }
|
---|
103 |
|
---|
104 | #endregion
|
---|
105 |
|
---|
106 | private System.Windows.Forms.RichTextBox richTextBox;
|
---|
107 | private System.Windows.Forms.Button okButton;
|
---|
108 | private System.Windows.Forms.Panel panel;
|
---|
109 | private System.Windows.Forms.Label label;
|
---|
110 | }
|
---|
111 | } |
---|