vote up 3 vote down star
2

I want to globally deactivate the focus rectangles in my WPF application. For single controls that can be done via

<Style TargetType="Button">
    <Setter Property="FocusVisualStyle" Value="{x:Null}" />
</Style>

but how to apply it to all controls in my application. When applying to FrameworkElement nothing happens. What I need would be something like "apply to class x and all derived classes".

Thanks in advance,

Stefan

flag

4 Answers

vote up 0 vote down

This may not be simple, but you could write a function that alters the existing style of a control. Once that is written, you could write a function that recursively alters the style of each element.

link|flag
Why did this get a -1? – John Fisher Jun 30 at 2:44
Probably because it's unnecessarily complex, fraught with difficulties such as ensuring you've covered every edge case possible and being quite hard to maintain, just to name 2. Compared to a Style and Setter for each type (which, though tedious, is simple), your suggestion sounds insane. I didn't give the -1. – Joel B Fant Aug 12 at 21:13
Since he hasn't made a comment that any of the solutions will work, we don't know whether the other ideas helped. If this is the only idea that meets his needs, "insane" would be an inaccurate depiction. – John Fisher Aug 13 at 14:07
vote up 0 vote down

You can use OverrideMetadata:

FrameworkElement.FocusVisualStyleProperty.OverrideMetadata(
    typeof(FrameworkElement),
    new FrameworkPropertyMetadata(null));
  1. you have to call this before any element is created, the Application.Startup event is probably the best place.
  2. This will only effect controls that use FrameworkElement's focus visual style and will not change controls that override it in code or styles.
  3. I haven't tries doing this with FocusVisualStyle myself
link|flag
Unfortunately this results in a "PropertyMetadata is already registered for type 'FrameworkElement' – grayscales Jun 29 at 11:35
1  
"Calls to OverrideMetadata should only be performed within the static constructors of the type that provides itself as the forType parameter of this method, or through similar instantiation." msdn.microsoft.com/en-us/library/… – Joel B Fant Aug 12 at 21:05
vote up 1 vote down

I know it sounds tedious, but you'll probably have to do the same thing for all the other control types, individually. Making a list of them and doing a couple simple Find/Replace operations should get you what you need, though.

link|flag
vote up 0 vote down

Looks like there's no magic bullet for this:

http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/141c8bfa-f152-4f8a-aca0-3c3b5440d183

link|flag

Your Answer

Get an OpenID
or

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