4

我已经在我的 Windows 8 应用程序中实现了搜索合同。

但是,当用户从应用程序中调出搜索魅力时,搜索框最初是空白的。我注意到其他应用程序在框中有一个默认的“水印”,例如 Bing 地图应用程序:

在此处输入图像描述

如何重现此行为并添加自己的水印?

4

1 回答 1

3

好的,它没有记录在主快速入门页面搜索指南中,但您可以这样做:

    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(...) 方法中

于 2012-10-09T16:34:36.237 回答