WorkerThreadElementContainer.OnPropertyChanged Method

Forwards the inheritable Framework properties so that worker thread's UI can benefit from them. Normally, inheritable properties are not forwarded across the thread boundries so we need to use a mediator panel to do the trick. It's why we use a panel to host the root UIElement of the worker thread and not use it directly.

Namespace:  Microsoft.VisualStudio.PlatformUI
Assembly:  Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)

Syntax

‘선언
Protected Overrides Sub OnPropertyChanged ( _
    e As DependencyPropertyChangedEventArgs _
)
‘사용 방법
Dim e As DependencyPropertyChangedEventArgs

Me.OnPropertyChanged(e)
protected override void OnPropertyChanged(
    DependencyPropertyChangedEventArgs e
)
protected:
virtual void OnPropertyChanged(
    DependencyPropertyChangedEventArgs e
) override
abstract OnPropertyChanged : 
        e:DependencyPropertyChangedEventArgs -> unit 
override OnPropertyChanged : 
        e:DependencyPropertyChangedEventArgs -> unit 
protected override function OnPropertyChanged(
    e : DependencyPropertyChangedEventArgs
)

Parameters

.NET Framework Security

See Also

Reference

WorkerThreadElementContainer Class

WorkerThreadElementContainer Members

Microsoft.VisualStudio.PlatformUI Namespace