I have some buttons in my Silverlight 2 app that I want the user to access from the keyboard.
If I understand correctly, I should be able to use AutomationProperties.AccessKey. For example:
<Button Content="Close" Name="btnClose" AutomationProperties.AccessKey="CTRL+Q" HorizontalAlignment="Left" />
But I can't get this to work? What am I doing wrong?