在“Xamarin.Forms”中同步运行“INavigation.PushModalAsync”
如何运行 INavigation.PushModalAsync 同步?
同步,我的意思是我想在打开模式页面时阻止 UI 交互(例如,快速点击两次时不允许打开两个页面)。
How to run INavigation.PushModalAsync
synchronously?
By synchronously, I mean I want to block UI interactions when opening a modal page (e.g. disallowing opening two pages when tapping fast twice).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有两种方法供您参考:
Button 中有一个 IsEnabled 属性,您可以在进入方法时先将 IsEnabled 设置为 false。这将使按钮不可点击。这可以防止多次点击。
您可以锁定您的方法内部。这样,你的逻辑代码就只会被执行一次。防止多次点击导致代码被多次执行。
有关如何使用Lock的信息,请参阅:锁定语句。
There are two ways for your reference:
There is an IsEnabled property in Button, you can first set IsEnabled to false when entering the method. This will make the Button unclickable. This prevents multiple clicks.
You can lock inside your method. In this way, your logic code will only be executed once. Prevent the code from being executed multiple times due to multiple clicks.
For information on how to use Lock, please refer to: lock statement.
正如 Wen xu Li 在他的回答中提到的,在操作运行时禁用 UI 是最佳实践。下面是实际情况:
MainViewModel.cs
MyPage.xaml
请注意,我正在使用 MvvmHelpers< /a> 本例中的库。
As Wen xu Li mentioned in his answer, disabling the UI when an operation is running is the best practice. Here's what that might look like in practice:
MainViewModel.cs
MyPage.xaml
Note that I'm using the MvvmHelpers library in this example.