如何在图片上创建appBar。如果仅在文本框处于焦点时才显示应用栏,那将会非常棒。appbar below keyboard
答案 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也会可见。 我希望这有帮助!