comparison ServerMonitor/Controls/CheckControl.cs @ 4:3142e52cbe69

Lots more progress
author Brad Greco <brad@bgreco.net>
date Sun, 10 Feb 2019 20:51:26 -0500
parents 453ecc1ed9ea
children 7127d5b5ac75
comparison
equal deleted inserted replaced
3:96f0b028176d 4:3142e52cbe69
11 { 11 {
12 /// <summary>Base class for check controls</summary> 12 /// <summary>Base class for check controls</summary>
13 /// <remarks>This control should never be used directly, but marking it abstract causes problems with the designer.</remarks> 13 /// <remarks>This control should never be used directly, but marking it abstract causes problems with the designer.</remarks>
14 public partial class CheckControl : UserControl 14 public partial class CheckControl : UserControl
15 { 15 {
16 public Type CheckType { get { return GetCheckType(GetType()); } } 16 public Type CheckType => GetCheckType(GetType());
17 17
18 public CheckControl() 18 public CheckControl()
19 { 19 {
20 InitializeComponent(); 20 InitializeComponent();
21 } 21 }