Removed item block display settings popup

This commit is contained in:
Ben
2015-07-04 22:38:13 +01:00
parent da3759cd76
commit f5dcdf0af9
11 changed files with 207 additions and 228 deletions

View File

@@ -1,10 +1,14 @@
using System.ComponentModel;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows;
using Filtration.Annotations;
using Filtration.ObjectModel;
using Filtration.ObjectModel.BlockItemBaseTypes;
using Filtration.Views;
using GalaSoft.MvvmLight.CommandWpf;
using Xceed.Wpf.Toolkit;
namespace Filtration.UserControls
{
@@ -70,6 +74,25 @@ namespace Filtration.UserControls
SetValue(RemoveEnabledProperty, value);
}
}
public ObservableCollection<ColorItem> AvailableColors
{
get
{
{
return PathOfExileColors.DefaultColors;
}
}
}
public List<int> SoundsAvailable
{
get
{
return new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
}
}
public event PropertyChangedEventHandler PropertyChanged;