WPF设置按钮光标为忙到底是什么意思

发布于 2024-11-29 08:49:19 字数 155 浏览 0 评论 0原文

我想在单击按钮时将光标设置为忙碌状态。在 Winform 中,我会在单击事件中更改光标,并在执行单击逻辑后恢复回来。现在阅读有关 WPF 中的 Cursor 的几篇文章,我只想确定通过 xaml 设置按钮的光标属性(在 UserControl 中)是否意味着 ->单击按钮时显示光标!谢谢!

I would like to set the cursor to busy status when the button is clicked. In a Winform i would have changed the cursor in the click event and revert back after the click logic is executed. Now reading through few posts about Cursor in WPF , i just want to make sure if Setting the cursor property of the button (its in a UserControl) through xaml means -> show the cursor when the button is clicked! Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咽泪装欢 2024-12-06 08:49:19

在 XAML 中设置光标属性将在每次鼠标移到光标上时更改光标。您想要的是 Mouse.OverrideCursorCursors.Wait,但您必须在代码中执行此操作,而不是 xaml。这是有道理的,如果你想要一个等待光标,你的 xaml 通常不知道你的操作何时完成,因为你必须将其重置为以前的状态或清除它。请参阅这篇文章了解更多信息。

Setting the cursor property in XAML will change the Cursor everytime your mouse moves over it. What you want is Mouse.OverrideCursor to Cursors.Wait, but you have to do it in your code, not xaml. Which makes sense, if you want a wait cursor, your xaml usually don't know when your operation is finished, because you have to reset it to the previous state or clear it. See this post for further info.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文