You could try using a Behavior instead. I created some simple code you can look through:
public class Permission
{
private List<string> roles = new List<string>();
public List<string> Roles
{
get { return roles; }
set { roles = value; }
}
}
public class PermissionBehavior
{
// Static behaviour parameters
public static readonly Dictionary<FrameworkElement, PermissionBehavior> Instances = new Dictionary<FrameworkElement, PermissionBehavior>();
public static readonly DependencyProperty PermissionProperty =
DependencyProperty.RegisterAttached("Permission", typeof(Permission), typeof(PermissionBehavior),
new PropertyMetadata(OnPermissionPropertyChanged));
public static readonly DependencyProperty RoleProperty =
DependencyProperty.RegisterAttached("Role", typeof(string), typeof(PermissionBehavior),
new PropertyMetadata(OnRolePropertyChanged));
private static void OnPermissionPropertyChanged(DependencyObject dependencyObject,
DependencyPropertyChangedEventArgs e)
{
SetPermission(dependencyObject, (Permission) e.NewValue);
}
public static void SetPermission(DependencyObject obj, Permission value)
{
var behavior = GetAttachedBehavior(obj as FrameworkElement);
behavior.AssociatedObject = obj as FrameworkElement;
obj.SetValue(PermissionProperty, value);
behavior.CurrentPermission = value;
behavior.UpdateVisibility();
}
public static object GetPermission(DependencyObject obj)
{
return obj.GetValue(PermissionProperty);
}
private static void OnRolePropertyChanged(DependencyObject dependencyObject,
DependencyPropertyChangedEventArgs e)
{
SetRole(dependencyObject, (string) e.NewValue);
}
public static void SetRole(DependencyObject obj, string value)
{
var behavior = GetAttachedBehavior(obj as FrameworkElement);
behavior.AssociatedObject = obj as FrameworkElement;
obj.SetValue(RoleProperty, value);
behavior.RoleList = value.Split(',').ToList();
behavior.UpdateVisibility();
}
public static object GetRole(DependencyObject obj)
{
return obj.GetValue(RoleProperty);
}
private static PermissionBehavior GetAttachedBehavior(FrameworkElement obj)
{
if (!Instances.ContainsKey(obj))
{
Instances[obj] = new PermissionBehavior { AssociatedObject = obj };
}
return Instances[obj];
}
static PermissionBehavior()
{
}
// Class instance parameters
private FrameworkElement AssociatedObject { get; set; }
private Permission CurrentPermission { get; set; }
private List<string> RoleList { get; set; }
private void UpdateVisibility()
{
if(RoleList == null || CurrentPermission == null)
return;
if (RoleList.Intersect(CurrentPermission.Roles).Any())
{
AssociatedObject.Visibility = Visibility.Visible;
AssociatedObject.IsEnabled = true;
}
else
{
AssociatedObject.Visibility = Visibility.Hidden;
AssociatedObject.IsEnabled = false;
}
}
}
XAML
<Window x:Class="WpfApplication2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:my="clr-namespace:WpfApplication2"
Title="MainWindow" Height="350" Width="525">
<Grid>
<StackPanel Orientation="Horizontal" VerticalAlignment="Top">
<Button Content="Requires Admin" Margin="6" my:PermissionBehavior.Permission="{Binding UserPermission, Mode=TwoWay}" my:PermissionBehavior.Role="Admin"/>
<Button Content="Requires User" Margin="6" my:PermissionBehavior.Permission="{Binding UserPermission, Mode=TwoWay}" my:PermissionBehavior.Role="User"/>
</StackPanel>
<Button Content="Change user" HorizontalAlignment="Left" Margin="10,88,0,0" VerticalAlignment="Top" Width="75" Click="ButtonBase_OnClick"/>
</Grid>
</Window>
Code
public partial class MainWindow : Window, INotifyPropertyChanged
{
private Permission userPermission;
public Permission UserPermission
{
get { return userPermission; }
set
{
userPermission = value;
OnPropertyChanged("UserPermission");
}
}
public MainWindow()
{
InitializeComponent();
DataContext = this;
UserPermission = new Permission {Roles = new List<string>{"Admin","DumbUser"}};
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
var handler = PropertyChanged;
if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
}
private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
{
var p = new Permission();
p.Roles = new List<string> {"User", "Supervisor"};
UserPermission = p;
}
}
It's trivial to change my Permission object and logic with what you use, I would think.