У меня есть два простых примера, чтобы продемонстрировать мою проблему.
Когда я запускаю сценарий 1, я могу перемещаться по списку в обычном режиме, используя расширенный режим выбора для выбора элементов.
Когда я запускаю сценарий 2, я обнаруживаю, что навигация по моему списку происходит медленно, и выбор элементов работает неправильно. Трудно объяснить, однако, суть в том, что щелчок не выделяет элемент под курсором большую часть времени.
Есть идеи?
1.Статически определите представление списка с 1000 элементами
<Window x:Class="WpfApplication1.StaticListView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="StaticListView" Height="300" Width="300">
<Grid>
<ListView Name="listView" SelectionMode="Extended">
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
<ListViewItem Content="bla" />
....
2. Определить представление списка, привязанное к списку из 1000 элементов
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace WpfApplication1
{
/// <summary>
/// Interaction logic for TestManyItemsInListView.xaml
/// </summary>
public partial class BoundListView : Window
{
public BoundListView()
{
InitializeComponent();
List<string> items = new List<string>();
AddItems(items);
listView.ItemsSource = items;
}
public void AddItems(List<string> items)
{
while (items.Count < 1000)
{
items.Add("bla");
}
}
}
}