2012-10-09 74 views
4

我已經實現了搜索合同在我的Windows 8應用得到水印。的Windows Store應用 - 如何在搜索文本框魅力

然而,當用戶從應用程序內帶來了搜索的魅力,搜索框是最初爲空。我注意到,其他應用程序有盒子內默認的「水印」,如Bing地圖應用:

enter image description here

我怎樣才能重現此行爲,並添加自己的水印?

回答

3

好吧,這不是記錄在main Quickstart pagesearch guidelines,但你不喜歡這樣寫道:

protected override async void OnWindowCreated(WindowCreatedEventArgs args) 
    { 
     SearchPane sp = SearchPane.GetForCurrentView(); 
     sp.PlaceholderText = "Enter the name of a town or city"; 
    } 

我建議將其放置到OnWindowCreated(...)方法在App.xaml.cs

相關問題