本文介绍了在文本框的Windows 8占位符或水印的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要显示在文本框的占位符文本当用户没有输入任何东西,文本框处于闲置状态。搜索结果
在Andriod的它是可以做到用的android:提示=一些文本结果
在iPhone也可以是作为做 textFild.placeholder =一些文本;

I want to show a placeholder text in TextBox when user hasn't typed anything and TextBox is idle.

In Andriod it can be done using android:hint="some Text"
In iPhone it can be done as textFild.placeholder = "some text";

我怎样才能做到这一点在Windows 8地铁的应用程序?

How can I do it in windows 8 metro apps?

感谢

推荐答案

Edit(编辑)的 Windows的8.1 ​​他们已经推出了新的属性。

Edit for windows-8.1 they have introduced a new property

<TextBox x:Name="UserName" PlaceholderText="User Name"/>

请参阅的

private void OnTestTextBoxGotFocus(object sender, RoutedEventArgs e)
{
    if (testTextBox.Text.Equals("Type here...", StringComparison.OrdinalIgnoreCase))
    {
        testTextBox.Text = string.Empty;
    }
}

private void OnTestTextBoxLostFocus(object sender, RoutedEventArgs e)
{
    if (string.IsNullOrEmpty(testTextBox.Text))
    {
        testTextBox.Text = "Type here...";
    }
}






结果

PS我创建了一个自定义的控制文本框则可以从

这篇关于在文本框的Windows 8占位符或水印的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 06:22