Implemented disabled block support

This commit is contained in:
Ben
2015-07-06 18:19:05 +01:00
parent 1b63f68eee
commit 9fcb609a51
15 changed files with 345 additions and 13 deletions

View File

@@ -13,8 +13,10 @@ namespace Filtration.ObjectModel
public ItemFilterBlock()
{
BlockItems = new ObservableCollection<IItemFilterBlockItem> {new ActionBlockItem(BlockAction.Show)};
Enabled = true;
}
public bool Enabled { get; set; }
public string Description { get; set; }
public ItemFilterBlockGroup BlockGroup