Jordan
Jordan

Reputation: 9911

Is there a WPF equivalent Silverlight's ScrollIntoView?

Is there a WPF equivalent Silverlight's ScrollIntoView?

I would like to do something like this:

scrollViewer.ScrollIntoView(this, 0, 4, new Duration(TimeSpan.FromMilliseconds(500)));

Upvotes: 1

Views: 356

Answers (2)

Bathineni
Bathineni

Reputation: 3496

till now i am using

scrollViewer1.ScrollToVerticalOffset(100)

scrollViewer1.ScrollToHorizontalOffset(100)

Methods

Upvotes: 0

Related Questions