Mercurial > servermonitor
view ServerMonitor/Controls/TimeUnitsComboBox.cs @ 7:8486ab7d2357
Add/remove files
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Fri, 01 Mar 2019 21:39:22 -0500 |
parents | 96f0b028176d |
children | 7127d5b5ac75 |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace ServerMonitorApp { class TimeUnitsComboBox : ComboBox { protected override void OnCreateControl() { base.OnCreateControl(); Items.Clear(); Items.Add("minutes"); Items.Add("hours"); Items.Add("days"); SelectedIndex = 2; } } public enum TimeUnits { Minute = 0, Hour = 1, Day = 2 } }