Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在我的 Windows 8 应用程序中实现了搜索合同。
但是,当用户从应用程序中调出搜索魅力时,搜索框最初是空白的。我注意到其他应用程序在框中有一个默认的“水印”,例如 Bing 地图应用程序:
如何重现此行为并添加自己的水印?
好的,它没有记录在主快速入门页面或搜索指南中,但您可以这样做:
protected override async void OnWindowCreated(WindowCreatedEventArgs args) { SearchPane sp = SearchPane.GetForCurrentView(); sp.PlaceholderText = "Enter the name of a town or city"; }
我建议将其放入 App.xaml.cs 中的 OnWindowCreated(...) 方法中