comparison ServerMonitor/Controls/ServerSummaryControl.Designer.cs @ 4:3142e52cbe69

Lots more progress
author Brad Greco <brad@bgreco.net>
date Sun, 10 Feb 2019 20:51:26 -0500
parents 3e1a2131f897
children 832a07de0f90
comparison
equal deleted inserted replaced
3:96f0b028176d 4:3142e52cbe69
28 /// </summary> 28 /// </summary>
29 private void InitializeComponent() 29 private void InitializeComponent()
30 { 30 {
31 this.ServerNameLabel = new System.Windows.Forms.Label(); 31 this.ServerNameLabel = new System.Windows.Forms.Label();
32 this.ServerPictureBox = new System.Windows.Forms.PictureBox(); 32 this.ServerPictureBox = new System.Windows.Forms.PictureBox();
33 this.StatusPictureBox = new System.Windows.Forms.PictureBox();
33 ((System.ComponentModel.ISupportInitialize)(this.ServerPictureBox)).BeginInit(); 34 ((System.ComponentModel.ISupportInitialize)(this.ServerPictureBox)).BeginInit();
35 ((System.ComponentModel.ISupportInitialize)(this.StatusPictureBox)).BeginInit();
34 this.SuspendLayout(); 36 this.SuspendLayout();
35 // 37 //
36 // ServerNameLabel 38 // ServerNameLabel
37 // 39 //
38 this.ServerNameLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 40 this.ServerNameLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
52 this.ServerPictureBox.Size = new System.Drawing.Size(192, 124); 54 this.ServerPictureBox.Size = new System.Drawing.Size(192, 124);
53 this.ServerPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; 55 this.ServerPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
54 this.ServerPictureBox.TabIndex = 0; 56 this.ServerPictureBox.TabIndex = 0;
55 this.ServerPictureBox.TabStop = false; 57 this.ServerPictureBox.TabStop = false;
56 // 58 //
59 // StatusPictureBox
60 //
61 this.StatusPictureBox.BackColor = System.Drawing.Color.Transparent;
62 this.StatusPictureBox.Image = global::ServerMonitorApp.Properties.Resources.pass;
63 this.StatusPictureBox.Location = new System.Drawing.Point(104, 92);
64 this.StatusPictureBox.Name = "StatusPictureBox";
65 this.StatusPictureBox.Size = new System.Drawing.Size(32, 32);
66 this.StatusPictureBox.TabIndex = 2;
67 this.StatusPictureBox.TabStop = false;
68 this.StatusPictureBox.Click += new System.EventHandler(this.Control_Click);
69 //
57 // ServerSummaryControl 70 // ServerSummaryControl
58 // 71 //
59 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 72 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
60 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 73 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
61 this.BackColor = System.Drawing.SystemColors.Control; 74 this.BackColor = System.Drawing.SystemColors.Control;
75 this.Controls.Add(this.StatusPictureBox);
62 this.Controls.Add(this.ServerNameLabel); 76 this.Controls.Add(this.ServerNameLabel);
63 this.Controls.Add(this.ServerPictureBox); 77 this.Controls.Add(this.ServerPictureBox);
64 this.Name = "ServerSummaryControl"; 78 this.Name = "ServerSummaryControl";
65 this.Size = new System.Drawing.Size(192, 192); 79 this.Size = new System.Drawing.Size(192, 192);
66 ((System.ComponentModel.ISupportInitialize)(this.ServerPictureBox)).EndInit(); 80 ((System.ComponentModel.ISupportInitialize)(this.ServerPictureBox)).EndInit();
81 ((System.ComponentModel.ISupportInitialize)(this.StatusPictureBox)).EndInit();
67 this.ResumeLayout(false); 82 this.ResumeLayout(false);
68 83
69 } 84 }
70 85
71 #endregion 86 #endregion
72 87
73 private System.Windows.Forms.PictureBox ServerPictureBox; 88 private System.Windows.Forms.PictureBox ServerPictureBox;
74 private System.Windows.Forms.Label ServerNameLabel; 89 private System.Windows.Forms.Label ServerNameLabel;
90 private System.Windows.Forms.PictureBox StatusPictureBox;
75 } 91 }
76 } 92 }