键盘下方的AppBar

时间:2016-03-03 14:42:23

标签: textbox keyboard windows-store-apps win-universal-app appbar

如何在图片上创建appBar。如果仅在文本框处于焦点时才显示应用栏,那将会非常棒。appbar below keyboard

1 个答案:

答案 0 :(得分:0)

您可以使用事件GotFocus显示您的appbar和LostFocus事件以隐藏或折叠您的appbar

的GotFocus https://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.uielement.gotfocus

引发LostFocus https://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.uielement.lostfocus

更新:如果您想在文本框处于焦点时显示您的appbar,您可以使用IsSticky = True

https://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.appbar.issticky.aspx

使用此属性即使键盘可见,您的appbar也会可见。 我希望这有帮助!