我似乎无法弄清楚,因为我似乎无法将我的 ListView 的项目转换为 ListViewItem 类型并调用 ListViewItem.Focus()。以下将不起作用,因为 ListView 的项目属于 LogRecord 类型:
((ListViewItem)listView.Items[0]).Focus();
编辑:我希望滚动条移动到项目所在的位置,基本上,或者更好地说,该项目在用户看到的项目列表中变得可见。
关于如何让我的 ListView 专注于特定项目的任何想法?现在它绑定到一个集合。下面是我设置 ListView 对象的方法:
listView = new ListView();
Grid.SetRow(listView, 1);
grid.Children.Add(listView);
GridView myGridView = new GridView();
// Skipping some code here to set up the GridView columns and such.
listView.View = myGridView;
Binding myBinding = new Binding();
myBinding.Source = PaneDataContext.LogsWrapper;
listView.SetBinding(ItemsControl.ItemsSourceProperty, myBinding);
我绑定到这种数据类型(LogRecord 包含 LogRecord.Message 之类的内容,它对应于网格视图上的 Message 列等;并且代码有效):
public class LogRecordWrapper : IEnumerable<LogRecord>, INotifyCollectionChanged
{
public List<LogRecord> RowList { get; set; }
public event NotifyCollectionChangedEventHandler CollectionChanged;
public LogRecordWrapper()
{
RowList = new List<LogRecord>();
}
protected virtual void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
{
if (CollectionChanged != null)
{
CollectionChanged(this, e);
}
}
public void SignalReset()
{
OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset, null));
}
public void Add(LogRecord item)
{
RowList.Add(item);
OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Add, item));
}
public IEnumerator<LogRecord> GetEnumerator()
{
return RowList.GetEnumerator();
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}