[7249] | 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));
|
---|
[7256] | 27 | this.richTextBox = new System.Windows.Forms.RichTextBox();
|
---|
[7249] | 28 | this.okButton = new System.Windows.Forms.Button();
|
---|
[7256] | 29 | this.panel = new System.Windows.Forms.Panel();
|
---|
| 30 | this.label = new System.Windows.Forms.Label();
|
---|
| 31 | this.panel.SuspendLayout();
|
---|
[7249] | 32 | this.SuspendLayout();
|
---|
| 33 | //
|
---|
[7256] | 34 | // richTextBox
|
---|
[7249] | 35 | //
|
---|
[7256] | 36 | this.richTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[7249] | 37 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 38 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[7256] | 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);
|
---|
[7249] | 50 | //
|
---|
| 51 | // okButton
|
---|
| 52 | //
|
---|
| 53 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[7256] | 54 | this.okButton.Location = new System.Drawing.Point(442, 170);
|
---|
[7249] | 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 | //
|
---|
[7256] | 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 | //
|
---|
[7249] | 83 | // HiveInformationDialog
|
---|
| 84 | //
|
---|
[7256] | 85 | this.AcceptButton = this.okButton;
|
---|
[7249] | 86 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 87 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[7256] | 88 | this.ClientSize = new System.Drawing.Size(529, 205);
|
---|
| 89 | this.Controls.Add(this.panel);
|
---|
[7249] | 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;
|
---|
[7256] | 96 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
[7249] | 97 | this.Text = "HeuristicLab Hive";
|
---|
[7256] | 98 | this.TopMost = true;
|
---|
| 99 | this.panel.ResumeLayout(false);
|
---|
[7249] | 100 | this.ResumeLayout(false);
|
---|
| 101 |
|
---|
| 102 | }
|
---|
| 103 |
|
---|
| 104 | #endregion
|
---|
| 105 |
|
---|
[7256] | 106 | private System.Windows.Forms.RichTextBox richTextBox;
|
---|
[7249] | 107 | private System.Windows.Forms.Button okButton;
|
---|
[7256] | 108 | private System.Windows.Forms.Panel panel;
|
---|
| 109 | private System.Windows.Forms.Label label;
|
---|
[7249] | 110 | }
|
---|
| 111 | } |
---|