Mercurial > servermonitor
view ServerMonitor/Controls/SizeUnitsComboBox.cs @ 32:2342e9459444
Fix schedule times not being saved.
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Sun, 16 Jun 2019 16:55:14 -0400 |
parents | 68d7834dc28e |
children |
line wrap: on
line source
using System.Windows.Forms; namespace ServerMonitorApp { /// <summary>Combo box containing options for size units.</summary> class SizeUnitsComboBox : ComboBox { protected override void OnCreateControl() { base.OnCreateControl(); // Clear the items to prevent duplicates added at design time and run time. Items.Clear(); Items.Add("B"); Items.Add("KB"); Items.Add("MB"); Items.Add("GB"); SelectedIndex = 0; } } /// <summary>Size units.</summary> /// <remarks>The integer values must equal the power of 1024 needed to convert from bytes to each unit.</remarks> public enum SizeUnits { B = 0, KB = 1, MB = 2, GB = 3 } }