tags:

views:

16

answers:

1

Is it possible to stop the Unloaded, OnApplyTemplate and OnTemplateChanged from triggering when we change the default font size in Windows XP?

alt text

It's been causing us some problems and we haven't figured out a good way to handle it. If you know what other events get triggered under this situation, it would help us a lot too.

Thanks!

A: 

The short answer is no. Many of the theme-dependent properties are set up in WPF as dynamic resources, meaning that templates get re-applied, etc. so that WPF apps behave well when those theme-based resources are modified.

Maybe you should re-post your question looking for specific solutions for what's breaking when the user changes theme-based properties.

FMM