【发布时间】:2015-05-14 23:50:39
【问题描述】:
我在 Windows Phone 8.1 应用程序的 XAML 页面中有一个 AutoSuggestBox,当我单击 AutoSuggestBox 时,整个页面都会上升。有谁知道如何禁用此功能?
谢谢
编辑: 这是代码修复,谢谢 Peter Torr - MSFT。
Windows.UI.ViewManagement.InputPane.GetForCurrentView().Showing += (s, args) =>
{
args.EnsuredFocusedElementInView = true;
};
【问题讨论】:
标签: c# xaml windows-phone-8.1 winrt-xaml