AnnotatedScrollBar.ScrollController Property
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.
Gets an interface that exposes IScrollController
members.
public:
property IScrollController ^ ScrollController { IScrollController ^ get(); };
IScrollController ScrollController();
public IScrollController ScrollController { get; }
var iScrollController = annotatedScrollBar.scrollController;
Public ReadOnly Property ScrollController As IScrollController
Property Value
An interface that exposes IScrollController
members.
Examples
This example shows how to connect an AnnotatedScrollBar
to the VerticalScrollController property of an ItemsView.
<Grid ColumnDefinitions="*,Auto">
<ItemsView VerticalScrollController="{x:Bind annotatedScrollBar.ScrollController}"/>
<AnnotatedScrollBar x:Name="annotatedScrollBar" Grid.Column="1"/>
</Grid>
Remarks
Use this property to connect the AnnotatedScrollBar
to properties of type IScrollController, as shown in the example section.