Lire en anglais Modifier

Partager via


FrameworkElement.RequestBringIntoView Event

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.

Occurs when BringIntoView(Rect) is called on this element.

C#
public event System.Windows.RequestBringIntoViewEventHandler RequestBringIntoView;

Event Type

Remarks

This event indicates to a parent ScrollViewer (or derived class) that the element that raises the RequestBringIntoView event should be made visible within the scrollable region. The ScrollViewer will then mark the RequestBringIntoView event as handled, by using class handling of the event. In general RequestBringIntoView event data should not be marked handled by any class that does control a scrolling region, or by any instance handler, because doing so would interfere with the intended goal of the element that called BringIntoView.

Routed Event Information

Item Value
Identifier field RequestBringIntoViewEvent
Routing strategy Bubbling
Delegate RequestBringIntoViewEventHandler

Applies to

Produit Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also