Filtration/Filtration.ObjectModel/BlockItemBaseTypes/IntegerBlockItem.cs

41 lines
1020 B
C#
Raw Normal View History

using System.Windows.Media;
2015-06-04 13:15:54 -04:00
2015-06-24 14:57:16 -04:00
namespace Filtration.ObjectModel.BlockItemBaseTypes
2015-06-04 13:15:54 -04:00
{
2015-06-24 14:57:16 -04:00
public abstract class IntegerBlockItem : BlockItemBase, IAudioVisualBlockItem
2015-06-04 13:15:54 -04:00
{
private int _value;
protected IntegerBlockItem()
{
}
protected IntegerBlockItem(int value)
{
Value = value;
}
public override string OutputText => PrefixText + " " + Value;
2015-06-23 17:21:10 -04:00
public override string SummaryText => string.Empty;
public override Color SummaryBackgroundColor => Colors.Transparent;
public override Color SummaryTextColor => Colors.Transparent;
2015-06-04 13:15:54 -04:00
public abstract int Minimum { get; }
public abstract int Maximum { get; }
public override bool IsDirty { get; protected set; }
2015-06-04 13:15:54 -04:00
public int Value
{
get { return _value; }
set
{
_value = value;
IsDirty = true;
2015-06-04 13:15:54 -04:00
OnPropertyChanged();
}
}
}
}