Hi I'm building a login screen in wpf and I'm trying to figure out how to Bind a part of my code to only be visible when the Caps lock key is on.

<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>Caps lock is on</Label>
</StackPanel>

I would prefer a solution with xaml binding only.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

We're using the following approach in our sign in form to show a 'Caps lock warning' when the password box has focus.

    private void PasswordBox_PreviewKeyDown(object sender, KeyEventArgs e)
    {
        UpdateCapsLockWarning(e.KeyboardDevice);
    }

    private void PasswordBox_GotKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
    {
        UpdateCapsLockWarning(e.KeyboardDevice);
    }

    private void PasswordBox_LostKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
    {
        CapsLockWarning.Visibility = Visibility.Hidden;
    }

    private void UpdateCapsLockWarning(KeyboardDevice keyboard)
    {
        CapsLockWarning.Visibility = keyboard.IsKeyToggled(Key.CapsLock) ? Visibility.Visible : Visibility.Hidden;
    }

Not the binding-only answer you're looking for though.

link|improve this answer
Thanks works just as expected. – gulbaek Aug 19 '11 at 9:23
feedback
Public Visibility CapsVisible
{
    get
    {
         if(Console.CapsLock)
              return Visibility.Visible;
         else
             return Visibility.Hidden;
    }

}

You can bind visibility property with above property. But this approach won't update at runtime which means if users turn the caps lock off you won't be notified. For that I guess you would have to monitor the key press.

link|improve this answer
This won't notify the View when the Caps Lock key is toggled. – fatty Aug 19 '11 at 9:14
Yes that's what I have written – Haris Hasan Aug 19 '11 at 9:15
But this approach does not update the binding, when the caps lock state changes. – Stephan Aug 19 '11 at 9:16
feedback

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

link|improve this answer
2  
Why don't you formulate your answer before you post it? – Stephan Aug 19 '11 at 9:13
1  
Also you don't need to use the windows API - .Net exposes all the functionality that you need to do this. – Justin Aug 19 '11 at 9:17
Fixed it now to use Console.CapsLock – Bas Brekelmans Aug 19 '11 at 9:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.