在 UWP Apps 的 CommandBar 中单击 3 个点的事件是什么?
what is the Event for 3 dots getting clicked in CommandBar in UWP Apps?
上下文构建:
我一直在开发 UWP 应用程序(C# 和 XAML),我在其中使用命令栏在页面底部显示一些选项。我在命令栏中使用 Primary 和 SecondaryCommands。
我需要的:
最后有 3 个点。我有一个函数,当命令栏为 "opened" & "closed" 时将被调用。
在此函数中,我需要检查 SecondaryCommands 菜单是否打开。
其次,我想知道事件名称,相当于前面AppbarButton中的StateChanged Event。
对于 #2,已经提到了这个:Click event for the "..." three dots of the application bar to change the opacity
注意:我已经搜索了在Visual Studio中按space时出现的列表。在 SO 上,我得到了针对早期版本 Windows 讨论过的链接。任何帮助,将不胜感激。提前致谢。
据 Microsoft 在 this 中的解释,CommandBar
和 Openeing
、Opened
、Closing
和 Closed
事件以及他们指的是 ...
3 点(省略号)。
当您按下 Ellipsis
打开或关闭 CommandBar
时会触发这些事件。我想这就是你要找的。
要检查包含 Secondary Commands
的 Overflow Menu
,您必须检查 CommandBar
是否有任何可用于 Opening
或 Opened
事件的辅助命令。
如果这不是您需要的,请在评论中告诉我。
上下文构建:
我一直在开发 UWP 应用程序(C# 和 XAML),我在其中使用命令栏在页面底部显示一些选项。我在命令栏中使用 Primary 和 SecondaryCommands。
我需要的:
最后有 3 个点。我有一个函数,当命令栏为 "opened" & "closed" 时将被调用。 在此函数中,我需要检查 SecondaryCommands 菜单是否打开。 其次,我想知道事件名称,相当于前面AppbarButton中的StateChanged Event。 对于 #2,已经提到了这个:Click event for the "..." three dots of the application bar to change the opacity
注意:我已经搜索了在Visual Studio中按space时出现的列表。在 SO 上,我得到了针对早期版本 Windows 讨论过的链接。任何帮助,将不胜感激。提前致谢。
据 Microsoft 在 this 中的解释,CommandBar
和 Openeing
、Opened
、Closing
和 Closed
事件以及他们指的是 ...
3 点(省略号)。
当您按下 Ellipsis
打开或关闭 CommandBar
时会触发这些事件。我想这就是你要找的。
要检查包含 Secondary Commands
的 Overflow Menu
,您必须检查 CommandBar
是否有任何可用于 Opening
或 Opened
事件的辅助命令。
如果这不是您需要的,请在评论中告诉我。