using SmartCoalApplication.Base; using SmartCoalApplication.Base.Enum; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SmartCoalApplication.Core { public interface IUnitsComboBox { UnitsDisplayType UnitsDisplayType { get; set; } bool LowercaseStrings { get; set; } MeasurementUnit Units { get; set; } string UnitsText { get; } bool PixelsAvailable { get; set; } bool InchesAvailable { get; } bool CentimetersAvailable { get; } void RemoveUnit(MeasurementUnit removeMe); void AddUnit(MeasurementUnit addMe); event EventHandler UnitsChanged; } }