[2065] | 1 | namespace HeuristicLab.Hive.Server.ServerConsole {
|
---|
| 2 | partial class LogonDlg {
|
---|
| 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(LogonDlg));
|
---|
| 27 | this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
---|
| 28 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 29 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
---|
| 30 | this.SuspendLayout();
|
---|
| 31 | //
|
---|
| 32 | // pictureBox1
|
---|
| 33 | //
|
---|
| 34 | this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
---|
| 35 | this.pictureBox1.Location = new System.Drawing.Point(12, 12);
|
---|
| 36 | this.pictureBox1.Name = "pictureBox1";
|
---|
| 37 | this.pictureBox1.Size = new System.Drawing.Size(97, 77);
|
---|
| 38 | this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
|
---|
| 39 | this.pictureBox1.TabIndex = 0;
|
---|
| 40 | this.pictureBox1.TabStop = false;
|
---|
| 41 | //
|
---|
| 42 | // label1
|
---|
| 43 | //
|
---|
| 44 | this.label1.AutoSize = true;
|
---|
| 45 | this.label1.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
| 46 | this.label1.ForeColor = System.Drawing.Color.White;
|
---|
| 47 | this.label1.Location = new System.Drawing.Point(115, 37);
|
---|
| 48 | this.label1.Name = "label1";
|
---|
| 49 | this.label1.Size = new System.Drawing.Size(276, 25);
|
---|
| 50 | this.label1.TabIndex = 1;
|
---|
| 51 | this.label1.Text = "Connecting... Please stand by.";
|
---|
| 52 | //
|
---|
| 53 | // LogonDlg
|
---|
| 54 | //
|
---|
| 55 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 56 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 57 | this.BackColor = System.Drawing.Color.RoyalBlue;
|
---|
| 58 | this.ClientSize = new System.Drawing.Size(450, 101);
|
---|
| 59 | this.Controls.Add(this.label1);
|
---|
| 60 | this.Controls.Add(this.pictureBox1);
|
---|
[2109] | 61 | this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
|
---|
[2065] | 62 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
---|
| 63 | this.Name = "LogonDlg";
|
---|
| 64 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
---|
| 65 | this.Text = "LogonDlg";
|
---|
| 66 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
---|
| 67 | this.ResumeLayout(false);
|
---|
| 68 | this.PerformLayout();
|
---|
| 69 |
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | #endregion
|
---|
| 73 |
|
---|
| 74 | private System.Windows.Forms.PictureBox pictureBox1;
|
---|
| 75 | private System.Windows.Forms.Label label1;
|
---|
| 76 | }
|
---|
| 77 | } |
---|