Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
3k views

Remove focus rectangle on a UserControl

I have a WPF UserControl with Focusable="True". It's the only focusable control in the window. Whenever the user presses Tab or Alt (and especially when they Alt+Tab to another application), my ...
1
vote
1answer
609 views

Change the FocusVisualStyle in the entire application

While making a WPF application I would like to change the default FocusVisualStyle (the black "marching ants" border) to something else, like for example a blue border. I would like to make this ...
1
vote
2answers
791 views

Why does ItemsControl show a focus rectangle when its parent is focused?

WPF's ItemsControl will display a focus rectangle when it thinks it has focus and the user presses Tab or Alt. But I recently had an ItemsControl display a focus rectangle even though it did not have ...
1
vote
2answers
3k views

WPF - FocusVisualStyle where do i apply it?

I have a UserControl which basically wraps a ListBox like this - <ListBox x:Name="lb" ItemsSource="{Binding ElementName=UC,Path=Pages}" Background="{Binding ...
0
votes
0answers
15 views

How to redefine FocusVisualStyle for all the elements

I have some RadioButtons in project. I need to redefine FocusVisualStyle for all of them. I think it is a bad idea to define the style for each. Does anyone have any idea how to redefine ...