當用戶滾動ListBox結束時如何調用某個函數? 我嘗試使用ScrollToBottom
位這不起作用!Windows Phone ListBox滾動到末尾
0
A
回答
-1
沒有名爲 「ScrollToBottom」 的方法試試這個:
myListBox.ScrollIntoView(myListBox.Items.Count);
0
試試這個:
myListBox.ScrollIntoView(myListBox.Items.Count);
如果您的列表框項目是一個控件,上述不會工作,原因是這滾動到項目的頂部而不是底部。
0
This Works。將ListBox設置爲不滾動,然後在其周圍添加一個ScrollViewer。現在在你的代碼背後,你可以將ScrollViewer設置爲任何你想要的。
XAML:
<!--Disable the ListBox scroll and add a ScrollViewer so we have control over the scroll position.-->
<ScrollViewer
Name="scrlvwrListBoxMessages"
VerticalScrollBarVisibility="Auto" >
<ListBox x:Name="lstbxMessages"
ScrollViewer.VerticalScrollBarVisibility="Disabled" >
</ListBox>
</ScrollViewer>
代碼:
private void ScrollToBottom()
{
//Scroll to the bottom.
Dispatcher.BeginInvoke(() =>
{
this.scrlvwrListBoxMessages.ScrollToVerticalOffset(double.MaxValue);
});
}
相關問題
- 1. 如何使Windows Phone Listbox不可滾動?
- 2. Windows Phone使用不同的DataTemplate將項目添加到ListBox的末尾?
- 3. 自動滾動到NSTextView的末尾
- 4. 動態滾動到頁面末尾
- 5. 如何滾動到Windows Phone 7中的ListBox的頂部?
- 6. 滾動列表末尾
- 7. 滾動到一行的末尾WPF TextBox
- 8. 滾動到UITextView的文本末尾
- 9. C#Windows Phone 7 ListBox滾動向上/向下事件?
- 10. 更改Windows Phone 7上ListBox的滾動條顏色
- 11. 自動滾動到WPF中文本塊的末尾
- 12. 爲什麼Windows Phone上的Silverlight ListBox不允許我一直滾動到底部?
- 13. Windows Phone中的Lazzy Listbox
- 14. Windows phone ListBox內存消耗
- 15. 當用戶滾動到頁面末尾時自動點擊
- 16. windows phone 8 scrollview不滾動到底部
- 17. ScrollViewer不滾動Windows Phone 8
- 18. Windows Phone Scroll Viewer不滾動
- 19. 如何確定到達listbox列表的末尾?
- 20. WP7 Listbox滾動
- 21. ListBox滾動
- 22. ListBox不能正確滾動
- 23. 動態添加可點擊列表項到Windows Phone的ListBox
- 24. 如何使DIV(SIDEBAR)擴展到滾動頁面的末尾?
- 25. 如何滾動到頁面末尾的最後一個容器
- 26. 在Python中的GTK3程序上滾動到ScrolledWindow/TextView的末尾
- 27. 當用戶滾動到指定表格末尾時查找
- 28. jqtscroll - 如何將滾動內容發送到頁面的末尾?
- 29. ScrollView不滾動到內部LinearLayout的底部邊距的末尾
- 30. AngularJS:應用DOM更改後滾動到元素末尾