LogicalTreeHelper::BringIntoView Method (DependencyObject^)

 

Attempts to bring the requested UI element into view and raises the FrameworkElement::RequestBringIntoView event on the target in order to report the results.

Namespace:   System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
static void BringIntoView(
	DependencyObject^ current
)

Parameters

current
Type: System.Windows::DependencyObject^

The UI element to bring into view.

It is typically more convenient to call the instance methods FrameworkElement::BringIntoView or FrameworkContentElement::BringIntoView rather than this static utility method. The behavior of the instance methods is equivalent to the behavior of the static method.

Even if the current UI element provided was a FrameworkContentElement, the resulting event is still the same FrameworkElement::RequestBringIntoView event, with the originating FrameworkContentElement identifiable by checking the event data of the event.

.NET Framework
Available since 3.0
Return to top
Show: