FrameworkElement.OnStyleChanged Method
Invoked when the style in use on this element changes, which will invalidate the layout.
Assembly: PresentationFramework (in PresentationFramework.dll)
'Declaration Protected Friend Overridable Sub OnStyleChanged ( _ oldStyle As Style, _ newStyle As Style _ )
Parameters
- oldStyle
- Type: System.Windows.Style
The old style.
- newStyle
- Type: System.Windows.Style
The new style.
This method has a default implementation that sets an internal flag that notes the style changed condition.
Notes to InheritorsYou should not typically have to override this method. Any change to a style that involves a measure or arrange change would already trigger another render cycle, assuming a typical implementation of ArrangeOverride / MeasureOverride, or the defaults. Overrides of OnStyleChanged might be appropriate if your ArrangeOverride / MeasureOverride implementations were deliberately optimizing or supporting partial updates, but still wanted to apply changes to styles more directly. (The partial updates would be an attempt to avoid multiple incremental calls to Measure and Arrange on any child elements).
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.