view ServerMonitor/Controls/SizeUnitsComboBox.cs @ 9:7127d5b5ac75

Code cleanup and comments
author Brad Greco <brad@bgreco.net>
date Mon, 08 Apr 2019 21:29:54 -0400
parents 96f0b028176d
children 68d7834dc28e
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>
    public enum SizeUnits { B = 0, KB = 1, MB = 2, GB = 3 }
}