namespace Terminal.Gui;
internal interface IColorBar
{
int Value { get; set; }
///
/// Update the value of and reflect
/// changes in UI state but do not raise a value changed
/// event (to avoid circular events).
///
///
internal void SetValueWithoutRaisingEvent (int v);
}