我的metro应用程序中有一个listview。是否要设置listview中最后一个项目的焦点?如何设置listview项的焦点?有人能帮我吗?
谢谢您。
最佳答案
您需要使用ListViewscurrentItem
属性:
http://msdn.microsoft.com/en-us/library/windows/apps/hh700672.aspx
具体地说,为它分配一个对象,其中包含要选择的数据项的索引(来自数据源),以及hasFocus
和showFocus
属性集:
var yourListView = getYourListViewFromSomewhere();
yourListView.currentItem = { index: 8, hasFocus: true, showFocus: true }