ListBox开始滚动时是否触发了事件?
我目前有以下代码,可以从列表框中无缝拖放。
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" Margin="-5" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate >
<DataTemplate>
<Image ManipulationStarted="ListImage_ManipulationStarted" Tag="{Binding selfReference}" x:Name="ListImage" Margin="2.5" Stretch="Fill" Source="{Binding thumbnailURL}" Height="64" Width="64"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
然后在代码中
private void ListImage_ManipulationStarted(object sender, ManipulationStartedEventArgs e)
{
if (dImage == null)
{
SoundEffectModel selectedModel = (sender as Image).Tag as SoundEffectModel;
int newIndex = listBoxSource.Items.IndexOf(selectedModel);
if (newIndex != -1)
{
listBoxSource.SelectedIndex = newIndex;
}
}
}
然后我复制列表框中的所选项目,并将其直接放在所选项目的当前位置上。一切顺利。
但是,如果用户开始滚动listBox而不是拖动应用程序周围的项目,则复制的图像位于listBox的顶部,看起来不专业。一旦用户抬起他们的手指,就会删除重复的项目,因为我可以检测到manipulationComplete事件,并意识到该项目位于“错误的位置”。
滚动开始时是否有办法删除项目而不是等待manipComplete事件?
context个问题:
答案 0 :(得分:2)
不,在ListBox
滚动时没有触发事件,但是,您可以找到ScrollViewer
模板中的ListBox
并处理ValueChanged
事件一旦滚动开始就会发生。
您可以按如下方式找到滚动条:
/// <summary>
/// Searches the descendants of the given element, looking for a scrollbar
/// with the given orientation.
/// </summary>
private static ScrollBar GetScrollBar(FrameworkElement fe, Orientation orientation)
{
return fe.Descendants()
.OfType<ScrollBar>()
.Where(s => s.Orientation == orientation)
.SingleOrDefault();
}
这使用Linq到Visual Tree,如this blog post中所述。