有没有办法以MVVM方式挂钩WPF(Windows Phone7)中的滚动事件?我想检测列表滚动到底部的时间,然后执行某些操作。我试过这样的事情,但显然它不会起作用:
<ListBox ItemsSource="{Binding Places}" SelectedItem="{Binding SelectedPlace, Mode=TwoWay}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Tap">
<i:InvokeCommandAction Command="{Binding ListBoxClick}"/>
</i:EventTrigger>
<i:EventTrigger EventName="Scroll">
<i:InvokeCommandAction Command="{Binding ListBoxScroll}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
(...)
</ListBox>
答案 0 :(得分:4)
在这种情况下,我总是朝着附加行为的方向发展,因为我们需要一个独立的解决方案,它可以在侧面UI和MVVM样式中运行。附加行为 - 是一个附加属性,它有一个事件处理程序来更改此属性,所有逻辑都在此处理程序中实现。
在这种情况下,您需要传递一个指示行为开始的布尔值,以及执行条件时执行的命令 - 滚动到ListBox
的末尾。
我创建了一个示例行为,其中关键逻辑在这里:
private static void scrollViewerScrollChanged(object sender, ScrollChangedEventArgs e)
{
var scrollViewer = sender as ScrollViewer;
if (scrollViewer != null)
{
// Here we determine if the bottom reached
if (scrollViewer.VerticalOffset == scrollViewer.ScrollableHeight)
{
command = GetCommand(listBox);
// Execute the command
command.Execute(listBox);
}
}
}
使用示例:
<强> XAML
强>
<Window.DataContext>
<local:TestViewModel />
</Window.DataContext>
<Window.Resources>
<x:Array x:Key="TestArray" Type="{x:Type sys:String}">
<sys:String>Test1</sys:String>
<sys:String>Test2</sys:String>
<sys:String>Test3</sys:String>
<sys:String>Test4</sys:String>
<sys:String>Test5</sys:String>
<sys:String>Test6</sys:String>
<sys:String>Test7</sys:String>
<sys:String>Test8</sys:String>
<sys:String>Test9</sys:String>
<sys:String>Test10</sys:String>
</x:Array>
</Window.Resources>
<Grid>
<ListBox Name="TestListBox"
AttachedBehaviors:ScrollingToBottomBehavior.IsEnabled="True"
AttachedBehaviors:ScrollingToBottomBehavior.Command="{Binding TestButtonCommand}"
ItemsSource="{StaticResource TestArray}"
Height="50" />
</Grid>
<强> TestViewModel
强>
public class TestViewModel
{
private ICommand _testButtonCommand = null;
public ICommand TestButtonCommand
{
get
{
if (_testButtonCommand == null)
{
_testButtonCommand = new RelayCommand(param => this.TestButton(), null);
}
return _testButtonCommand;
}
}
private void TestButton()
{
MessageBox.Show("Test command execute");
}
}
<强> ScrollingToBottomBehavior
强>
public class ScrollingToBottomBehavior
{
#region Private Section
private static ListBox listBox = null;
private static ICommand command = null;
#endregion
#region IsEnabledProperty
public static readonly DependencyProperty IsEnabledProperty;
public static void SetIsEnabled(DependencyObject DepObject, string value)
{
DepObject.SetValue(IsEnabledProperty, value);
}
public static bool GetIsEnabled(DependencyObject DepObject)
{
return (bool)DepObject.GetValue(IsEnabledProperty);
}
#endregion
#region CommandProperty
public static readonly DependencyProperty CommandProperty;
public static void SetCommand(DependencyObject DepObject, ICommand value)
{
DepObject.SetValue(CommandProperty, value);
}
public static ICommand GetCommand(DependencyObject DepObject)
{
return (ICommand)DepObject.GetValue(CommandProperty);
}
static ScrollingToBottomBehavior()
{
IsEnabledProperty = DependencyProperty.RegisterAttached("IsEnabled",
typeof(bool),
typeof(ScrollingToBottomBehavior),
new UIPropertyMetadata(false, IsFrontTurn));
CommandProperty = DependencyProperty.RegisterAttached("Command",
typeof(ICommand),
typeof(ScrollingToBottomBehavior));
}
#endregion
private static void IsFrontTurn(DependencyObject sender, DependencyPropertyChangedEventArgs e)
{
listBox = sender as ListBox;
if (listBox == null)
{
return;
}
if (e.NewValue is bool && ((bool)e.NewValue) == true)
{
listBox.Loaded += new RoutedEventHandler(listBoxLoaded);
}
else
{
listBox.Loaded -= new RoutedEventHandler(listBoxLoaded);
}
}
private static void listBoxLoaded(object sender, RoutedEventArgs e)
{
var scrollViewer = GetFirstChildOfType<ScrollViewer>(listBox);
if (scrollViewer != null)
{
scrollViewer.ScrollChanged += new ScrollChangedEventHandler(scrollViewerScrollChanged);
}
}
#region GetFirstChildOfType
private static T GetFirstChildOfType<T>(DependencyObject dependencyObject) where T : DependencyObject
{
if (dependencyObject == null)
{
return null;
}
for (var i = 0; i < VisualTreeHelper.GetChildrenCount(dependencyObject); i++)
{
var child = VisualTreeHelper.GetChild(dependencyObject, i);
var result = (child as T) ?? GetFirstChildOfType<T>(child);
if (result != null)
{
return result;
}
}
return null;
}
#endregion
private static void scrollViewerScrollChanged(object sender, ScrollChangedEventArgs e)
{
var scrollViewer = sender as ScrollViewer;
if (scrollViewer != null)
{
if (scrollViewer.VerticalOffset == scrollViewer.ScrollableHeight)
{
command = GetCommand(listBox);
command.Execute(listBox);
}
}
}
}
完整的示例项目
here
。