ScrollBar.Scroll 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.
public:
event System::Windows::Controls::Primitives::ScrollEventHandler ^ Scroll;
public event System.Windows.Controls.Primitives.ScrollEventHandler Scroll;
member this.Scroll : System.Windows.Controls.Primitives.ScrollEventHandler
Public Custom Event Scroll As ScrollEventHandler
Event Type
Examples
The following example shows how assign an event handler for the Scroll event to a ScrollBar control, and how to define the event handler in code.
<ScrollBar Orientation="Horizontal"/>
private void OnScroll(object sender, RoutedEventArgs e)
{
//Things to do when the Scroll event occurs
}
Private Sub OnScroll(ByVal sender As Object, ByVal e As RoutedEventArgs)
'Things to do when the Scroll event occurs
End Sub
Remarks
This event typically occurs multiple times when the user changes the Value of the ScrollBar by dragging the Thumb. There is no limit to the number of times this event is raised as the Thumb position is dragged.
This event is not raised when the Value of the ScrollBar control is changed in code.
Routed Event Information
Item | Value |
---|---|
Identifier field | ScrollEvent |
Routing strategy | Bubbling |
Delegate | ScrollEventHandler |
Applies to
See also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET