Windows 上的 RefreshView 拉取方向
此 .NET Multi-platform App UI (.NET MAUI) Windows 平台特定内容支持更改 RefreshView 的拉取方向,以匹配显示数据的可滚动控件的方向。 通过将 RefreshView.RefreshPullDirection
可绑定属性设置为 RefreshPullDirection
枚举的值以在 XAML 中使用它:
<ContentPage ...
xmlns:local="clr-namespace:PlatformSpecifics"
xmlns:windows="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific;assembly=Microsoft.Maui.Controls"
x:DataType="local:WindowsRefreshViewPageViewModel">
<RefreshView windows:RefreshView.RefreshPullDirection="LeftToRight"
IsRefreshing="{Binding IsRefreshing}"
Command="{Binding RefreshCommand}">
<ScrollView>
...
</ScrollView>
</RefreshView>
</ContentPage>
或者,可以使用 Fluent API 在 C# 中使用它:
using Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific;
...
refreshView.On<Microsoft.Maui.Controls.PlatformConfiguration.Windows>().SetRefreshPullDirection(RefreshPullDirection.LeftToRight);
RefreshView.On<Microsoft.Maui.Controls.PlatformConfiguration.Windows>
方法指定此平台特定内容仅在 Windows 上运行。 Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific
命名空间中的 RefreshView.SetRefreshPullDirection
方法用于设置 RefreshView 的拉取方向,RefreshPullDirection
枚举提供四个可能的值:
LeftToRight
指示从左到右的拉取会启动刷新。TopToBottom
指示从上到下拉的拉取会启动刷新,并且是 RefreshView 的默认拉取方向。RightToLeft
指示从右到左的拉取会启动刷新。BottomToTop
指示从下到上的拉取会启动刷新。
此外,GetRefreshPullDirection
方法还可用于返回 RefreshView 的当前 RefreshPullDirection
。
结果是指定的 RefreshPullDirection
应用于 RefreshView,以设置拉取方向来匹配显示数据的可滚动控件的方向。 以下屏幕截图显示了具有 LeftToRight
拉取方向的 RefreshView:
注意
更改拉取方向时,进度圈的起始位置会自动旋转,以便箭头开始的位置与拉取方向的相应位置对应。