Mercurial > servermonitor
view ServerMonitor/Controls/ServerSummaryControl.cs @ 10:9e77c0dccb66
Add update checker
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Mon, 08 Apr 2019 21:31:03 -0400 |
parents | 7127d5b5ac75 |
children |
line wrap: on
line source
using System; using System.Windows.Forms; namespace ServerMonitorApp { public partial class ServerSummaryControl : UserControl { public new event EventHandler Click; public Server Server { get; private set; } public ServerSummaryControl(Server server) { InitializeComponent(); foreach (Control control in new Control[] { this, ServerPictureBox, ServerNameLabel }) { control.Cursor = Cursors.Hand; control.Click += Control_Click; } Server = server; ServerNameLabel.Text = Server.Name; StatusPictureBox.Parent = ServerPictureBox; StatusPictureBox.Image = Server.Status.GetImage(); } public override void Refresh() { StatusPictureBox.Image = Server.Status.GetImage(); base.Refresh(); } private void Control_Click(object sender, EventArgs e) { Click?.Invoke(this, e); } } }