Hi,
I am using the following in my project (Standard WPF window) to set an AccessText for a TextBox:
<Label Target="{Binding ElementName=MyTextBox}">_Test</Label>
<TextBox x:Name="MyTextBox"></TextBox>
When I apply a VisualStyle to this Window the _ is shown in the Label and the access key is not working:
SkinStorage.SetVisualStyle(this, "Office2010Blue");
Is there a workaound to get the access key working with a Label and a VisualStyle?
Thanks,
Kurt