键盘显示时的CommandBar行为

时间:2016-02-21 02:35:25

标签: xaml windows-phone-8 win-universal-app

我的 UWP 应用中有CommandBar

<Page.BottomAppBar>
    <CommandBar x:Name="BottomBar">
        <AppBarButton Icon="Save" Label="Save" Click="OnSave"/>
        <AppBarButton Icon="Clear" Label="Reset"/>
    </CommandBar>
</Page.BottomAppBar>

UWP CommandBar

Windows Phone 8.1中,当显示Keyboard时,如果按Save,则会执行OnSave方法。 但在 UWP 中,按“保存”会隐藏Keyboard未执行Click事件。

我希望此CommandBar的行为类似于Windows Phone 8.1

1 个答案:

答案 0 :(得分:1)

我没有测试它,但你可以尝试 IsTabStop =&#34; False&#34;

<AppBarButton Icon="Save" Label="Save" Click="OnSave" IsTabStop="False"/>