I have this passwordbox :
<PasswordBox x:Name="textBox1">
<PasswordBox.InputBindings>
<KeyBinding Key="Return" Command="{Binding MyCommand}"/>
</PasswordBox.InputBindings>
</PasswordBox>
I want to bind my command with all keys, and not just enter.
Is it possible?
Thanks.