comparison ServerMonitor/Controls/ServerSummaryControl.Designer.cs @ 0:3e1a2131f897

Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
author Brad Greco <brad@bgreco.net>
date Mon, 31 Dec 2018 18:32:14 -0500
parents
children 3142e52cbe69
comparison
equal deleted inserted replaced
-1:000000000000 0:3e1a2131f897
1 namespace ServerMonitorApp
2 {
3 partial class ServerSummaryControl
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Component Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.ServerNameLabel = new System.Windows.Forms.Label();
32 this.ServerPictureBox = new System.Windows.Forms.PictureBox();
33 ((System.ComponentModel.ISupportInitialize)(this.ServerPictureBox)).BeginInit();
34 this.SuspendLayout();
35 //
36 // ServerNameLabel
37 //
38 this.ServerNameLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
39 | System.Windows.Forms.AnchorStyles.Right)));
40 this.ServerNameLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
41 this.ServerNameLabel.Location = new System.Drawing.Point(0, 127);
42 this.ServerNameLabel.Name = "ServerNameLabel";
43 this.ServerNameLabel.Size = new System.Drawing.Size(192, 21);
44 this.ServerNameLabel.TabIndex = 1;
45 this.ServerNameLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
46 //
47 // ServerPictureBox
48 //
49 this.ServerPictureBox.Image = global::ServerMonitorApp.Properties.Resources.server;
50 this.ServerPictureBox.Location = new System.Drawing.Point(0, 0);
51 this.ServerPictureBox.Name = "ServerPictureBox";
52 this.ServerPictureBox.Size = new System.Drawing.Size(192, 124);
53 this.ServerPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
54 this.ServerPictureBox.TabIndex = 0;
55 this.ServerPictureBox.TabStop = false;
56 //
57 // ServerSummaryControl
58 //
59 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
60 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
61 this.BackColor = System.Drawing.SystemColors.Control;
62 this.Controls.Add(this.ServerNameLabel);
63 this.Controls.Add(this.ServerPictureBox);
64 this.Name = "ServerSummaryControl";
65 this.Size = new System.Drawing.Size(192, 192);
66 ((System.ComponentModel.ISupportInitialize)(this.ServerPictureBox)).EndInit();
67 this.ResumeLayout(false);
68
69 }
70
71 #endregion
72
73 private System.Windows.Forms.PictureBox ServerPictureBox;
74 private System.Windows.Forms.Label ServerNameLabel;
75 }
76 }