我的 UWP 应用中有CommandBar
:
<Page.BottomAppBar>
<CommandBar x:Name="BottomBar">
<AppBarButton Icon="Save" Label="Save" Click="OnSave"/>
<AppBarButton Icon="Clear" Label="Reset"/>
</CommandBar>
</Page.BottomAppBar>
在Windows Phone 8.1
中,当显示Keyboard
时,如果按Save
,则会执行OnSave
方法。
但在 UWP 中,按“保存”会隐藏Keyboard
未执行Click
事件。
我希望此CommandBar
的行为类似于Windows Phone 8.1
。
答案 0 :(得分:1)
我没有测试它,但你可以尝试 IsTabStop =&#34; False&#34; :
<AppBarButton Icon="Save" Label="Save" Click="OnSave" IsTabStop="False"/>