view ServerMonitor/Controls/SizeUnitsComboBox.cs @ 27:e59ec1585616

Fix bad commit intending to change default frequency that actually changed default severity.
author Brad Greco <brad@bgreco.net>
date Sun, 02 Jun 2019 17:51:30 -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 }
}