DesignerTheme.OnAmbientPropertyChanged(AmbientProperty) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Notifies the designer theme class that the ambient property settings for the designer have changed.
public:
virtual void OnAmbientPropertyChanged(System::Workflow::ComponentModel::Design::AmbientProperty ambientProperty);
public virtual void OnAmbientPropertyChanged (System.Workflow.ComponentModel.Design.AmbientProperty ambientProperty);
abstract member OnAmbientPropertyChanged : System.Workflow.ComponentModel.Design.AmbientProperty -> unit
override this.OnAmbientPropertyChanged : System.Workflow.ComponentModel.Design.AmbientProperty -> unit
Public Overridable Sub OnAmbientPropertyChanged (ambientProperty As AmbientProperty)
Parameters
- ambientProperty
- AmbientProperty
The AmbientProperty enumeration value that the designer theme should now use.
Remarks
Classes that inherit from DesignerTheme use this method to make necessary changes when the AmbientProperty enumeration value changes from DesignerSize to OperatingSystemSetting or OperatingSystemSetting to DesignerSize.
The AmbientProperty enumeration determines where a designer theme obtains its ambient property settings. If the DesignerSize value is set, the designer theme class obtains its ambient settings from the AmbientTheme property. If the OperatingSystemSetting value is set, the designer theme class obtains its ambient settings from the operating system on which the designer is installed.