UIElement.OnBringIntoViewRequested(BringIntoViewRequestedEventArgs) Method
Definition
Called before the BringIntoViewRequested event occurs. Equivalent WinUI method: Microsoft.UI.Xaml.UIElement.OnBringIntoViewRequested.
protected:
virtual void OnBringIntoViewRequested(BringIntoViewRequestedEventArgs ^ e) = OnBringIntoViewRequested;
void OnBringIntoViewRequested(BringIntoViewRequestedEventArgs const & e);
protected virtual void OnBringIntoViewRequested(BringIntoViewRequestedEventArgs e);
function onBringIntoViewRequested(e)
Protected Overridable Sub OnBringIntoViewRequested (e As BringIntoViewRequestedEventArgs)
Parameters
The data for the event.
Windows 10 requirements
Device family |
Windows 10, version 1803 (introduced in 10.0.17134.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v6.0)
|
Remarks
As it's implemented directly on UIElement, OnBringIntoViewRequested has an empty implementation. But, an ancestor in an element's hierarchy may have provided an implementation such as a base scrolling control. You won't be able to see this implementation because it's internal native code. Control code or your code probably shouldn't be suppressing the event, because it's a common pattern to let the event bubble to the root visual so that any scrolling control in the element tree will have an opportunity to react to the request.