I have created an attached property that, if set to true, will show or hide the element based on the caps lock state.
This does not do anything when the state changes. There is, to my knowledge, no event that triggers on caps lock change. (This can be done using a timer, or something like that)
Use in XAML (local is the namespace with the VisibilityExtensions class):
<StackPanel Grid.Row="3" Grid.ColumnSpan="2" Grid.Column="1" Orientation="Horizontal">
<Image Source="../../../Resources/Icons/109_AllAnnotations_Warning_16x16_72.png" Height="16" Width="16"/>
<Label local:VisibilityExtensions.VisibleOnCapsLock="True">Caps lock is on</Label>
</StackPanel>
Code:
public static class VisibilityExtensions
{
public static bool GetVisibleOnCapsLock(DependencyObject obj)
{
return (bool)obj.GetValue(VisibleOnCapsLockProperty);
}
public static void SetVisibleOnCapsLock(DependencyObject obj, bool value)
{
obj.SetValue(VisibleOnCapsLockProperty, value);
}
// Using a DependencyProperty as the backing store for VisibleOnCapsLock. This enables animation, styling, binding, etc...
public static readonly DependencyProperty VisibleOnCapsLockProperty =
DependencyProperty.RegisterAttached("VisibleOnCapsLock", typeof(bool), typeof(VisibilityExtensions), new UIPropertyMetadata(visibleOnCapsLockChanged));
private static void visibleOnCapsLockChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
UIElement element = obj as UIElement;
if (element != null)
{
element.Visibility = Console.CapsLock ? Visibility.Visible : Visibility.Collapsed;
}
}
}
Update fixed it to use the Console.CapsLock property