Compartilhar via


INodeCustomizer.OnBeforeNodeShown(WorkspaceVisualNodeBase) Method

Definition

Modifies the visualization of a node before it's shown to the user. This may be called when the visual tree is refreshed either by the user or in response to some event. Operations to the node should be limited to visual changes and no functional changes should be made. Usage of UINode is advised.

public:
 void OnBeforeNodeShown(Microsoft::VisualStudio::Workspace::VSIntegration::UI::WorkspaceVisualNodeBase ^ node);
public void OnBeforeNodeShown (Microsoft.VisualStudio.Workspace.VSIntegration.UI.WorkspaceVisualNodeBase node);
abstract member OnBeforeNodeShown : Microsoft.VisualStudio.Workspace.VSIntegration.UI.WorkspaceVisualNodeBase -> unit
Public Sub OnBeforeNodeShown (node As WorkspaceVisualNodeBase)

Parameters

node
WorkspaceVisualNodeBase

The node to customize.

Applies to