Skip to content

Commit

Permalink
Use compiled bindings. (#2740)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbritch authored Jan 17, 2025
1 parent c4a6fab commit 7935c22
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/windows/platform-specifics/refreshview-pulldirection.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "RefreshView pull direction on Windows"
description: "This article explains how to consume the .NET MAUI Windows platform-specific that enables the pull direction of a RefreshView to be changed."
ms.date: 04/06/2022
ms.date: 01/17/2025
---

# RefreshView pull direction on Windows
Expand All @@ -10,7 +10,9 @@ This .NET Multi-platform App UI (.NET MAUI) Windows platform-specific enables th

```xaml
<ContentPage ...
xmlns:windows="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific;assembly=Microsoft.Maui.Controls">
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}">
Expand Down

0 comments on commit 7935c22

Please sign in to comment.