문제

ScrollViewer is having hundreds of records and it has image views, these image views are not loading while setting the Scrollviewer.ScrollToVerticalOffset(100) , am trying to print the VerticalOffset value it shows '0'. This is the major problem i have read some where.But what is the solution for my problem?..

도움이 되었습니까?

해결책

After doing some research I arrived at this solution:

    scrollViewer1.UpdateLayout();
    scrollViewer1.ScrollToVerticalOffset(200);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top