当前位置:首 页 > 攻城湿 >Windows Phone > 查看文章

对于文本框的输入,为了方便输入、限制输入类型、以及减少错误输入等,有时候需要定制一些特殊的键盘,比如全数字键盘,字母键盘等等。

Windows Phone提供了多种InputScope模式选择,下面说一下TextBox控件的InputScope属性用法:

在Xaml文件中

<textbox InputScope="Number" Height="72" HorizontalAlignment="Left" Margin="10,10,0,0" Name="textBox1" 
Text="数字键盘" VerticalAlignment="Top" Width="387"></textbox>

在C#代码中

InputScope input = new InputScope();
            InputScopeName name = new InputScopeName();
            name.NameValue = InputScopeNameValue.Uri;
            input.Names.Add(name);
            this.textBox1.InputScope = input;

Windows Phone 默认的 InputScopeNameValue 枚举有

 Default 输入命令的默认处理。
The default handling of input commands.
 Url 统一资源定位符 (URL) 的文本输入模式。
The text input pattern for a Uniform Resource Locator (URL).
 FullFilePath 文件完整路径的文本输入模式。
The text input pattern for the full path of a file.
 FileName 文件名的文本输入模式。
The text input pattern for a file name.
 EmailUserName 电子邮件用户名的文本输入模式。
The text input pattern for an email user name.
 EmailSmtpAddress 简单邮件传输协议 (SMTP) 电子邮件地址的文本输入模式。
The text input pattern for a Simple Mail Transfer Protocol (SMTP) email address.
 LogOnName 登录名的文本输入模式。
The text input pattern for a log on name.
 PersonalFullName 个人的全名的文本输入模式。
The text input pattern for a person’s full name.
 PersonalNamePrefix 个人姓名前缀的文本输入模式。
The text input pattern for the prefix of a person’s name.
 PersonalGivenName 个人的名字的文本输入模式。
The text input pattern for a person’s given name.
 PersonalMiddleName 个人的中间名的文本输入模式。
The text input pattern for a person’s middle name.
 PersonalSurname 个人的姓的文本输入模式。
The text input pattern for a person’s surname.
 PersonalSurname 个人姓名后缀的文本输入模式。
The text input pattern for the suffix of a person’s name.
 PostalAddress 邮寄地址的文本输入模式。
The text input pattern for a postal address.
 PostalCode 邮政编码的文本输入模式。
The text input pattern for a postal code.
 AddressStreet 街道地址的文本输入模式。
The text input pattern for a street address.
 AddressStateOrProvince 省/市/自治区的文本输入模式。
The text input pattern for a state or province.
 AddressCity 城市地址的文本输入模式。
The text input pattern for a city address.
 AddressCountryName 国家/地区的名称的文本输入模式。
The text input pattern for the name of a country.
 AddressCountryShortName 国家/地区的缩写名称的文本输入模式。
The text input pattern for the abbreviated name of a country.
 CurrencyAmountAndSymbol 货币数量和符号的文本输入模式。
The text input pattern for amount and symbol of currency.
 CurrencyAmount 货币数量的文本输入模式。
The text input pattern for amount of currency.
 Date 日历日期的文本输入模式。
The text input pattern for a calendar date.
 DateMonth 日历日期中数字月份的文本输入模式。
The text input pattern for the numeric month in a calendar date.
 DateDay 日历日期中数字日期的文本输入模式。
The text input pattern for the numeric day in a calendar date.
 DateYear 日历日期中年份的文本输入模式。
The text input pattern for the year in a calendar date.
 DateMonthName 日历日期中月份名称的文本输入模式。
The text input pattern for the name of the month in a calendar date.
 DateDayName 日历日期中日期名称的文本输入模式。
The text input pattern for the name of the day in a calendar date.
 Digits 数字的文本输入模式。
The text input pattern for digits.
 Number 数字的文本输入模式。
The text input pattern for a number.
 OneChar 某个字符的文本输入模式。
The text input pattern for one character.
 Password 密码的文本输入模式。
The text input pattern for a password.
 TelephoneNumber 电话号码的文本输入模式。
The text input pattern for a telephone number.
 TelephoneCountryCode 国家/地区电话代码的文本输入模式。
The text input pattern for a telephone country code.
 TelephoneAreaCode 区号的文本输入模式。
The text input pattern for a telephone area code.
 TelephoneLocalNumber 本地电话号码的文本输入模式。
The text input pattern for a telephone local number.
 Time 时间的文本输入模式。
The text input pattern for the time.
 TimeHour 小时的文本输入模式。
The text input pattern for the hour of the time.
 TimeMinorSec 时间的分钟或秒的文本输入模式。
The text input pattern for the minutes or seconds of time.
 NumberFullWidth 全角数字的文本输入模式。
The text input pattern for a full-width number.
 AlphanumericHalfWidth 字母数字半角字符的文本输入模式。
The text input pattern for alphanumeric half-width characters.
 AlphanumericFullWidth 字母数字全角字符的文本输入模式。
The text input pattern for alphanumeric full-width characters.
 CurrencyChinese 中国货币的文本输入模式。
The text input pattern for Chinese currency.
 Bopomofo 汉语拼音语音转换系统的文本输入模式。
The text input pattern for the Bopomofo Mandarin Chinese phonetic transcription system.
 Hiragana 平假名书写体系的文本输入模式。
The text input pattern for the Hiragana writing system.
 KatakanaHalfWidth 半角片假名字符的文本输入模式。
The text input pattern for half-width Katakana characters.
 KatakanaFullWidth 全角片假名字符的文本输入模式。
The text input pattern for full-width Katakana characters.
 Hanja 朝鲜文汉字字符的文本输入模式。
The text input pattern for Hanja characters.
 PhraseList 词组列表的文本输入模式。
The text input pattern for a phrase list.
 RegularExpression 正则表达式的文本输入模式。
The text input pattern for a regular expression.
 Srgs 语音识别语法规范 (SRGS) 的文本输入模式。
The text input pattern for the Speech Recognition Grammar Specification (SRGS).
 Xml XML的文本输入模式
The text input pattern for XML.
这家伙很懒,什么都没写!

—— zhaorong

zhaorong
你可能也喜欢Related Posts
众说纷纭Comments
大眼 可爱 大笑 坏笑 害羞 发怒 折磨 快哭了 大哭 白眼 晕 流汗 困 腼腆 惊讶 憨笑 色 得意 骷髅 囧 睡觉 眨眼 亲亲 疑问 闭嘴 难过 淡定 抗议 鄙视 猪头
小提示:直接粘贴图片到输入框试试
努力发送中...
  1. 1 楼

    光棍节产生之初,多少带有些调侃的意味,而那时候光棍也只是指单身男性。但随着社会的发展,光棍的队伍逐渐壮大。年轻人忙于工作,让他们无暇交友,但以前的朋友陆续结婚生子,突然的离群感让他们急于寻求群体的归属感,于是单身聚会成了新的社交圈子,在同类人群中,他们的情感得以抒发。这个人群收入水平高、消费力强,对生活品质有要求。光棍群体的扩大必定吸引了商家的注意力。于是,在商家的助推之下,单身经济就骤然兴起,光棍节的各种促销活动、广告宣传也将这个小众活动,形成了社会化的节日。

    2014年01月17日 09:05:53 回复 取消回复
  2. 2 楼

    连日大旱。百姓争相去见拉比,请他祷告求雨。拉比祈祷——果真灵验……不料雨下个不停。百姓再度绝望。这回拉比被请出来祷告求天晴。拉比祈祷——徒劳。拉比的仆人对失望的人们解释说:“你们必须明白,拉比还非常年轻。求雨,他能做到。可是,如何让雨停歇,他还没有学会。”

    2014年01月18日 06:34:16 回复 取消回复
  3. 3 楼

    朗朗书,走万里路。滚滚红尘,何处是净土。心怀不满,四处传流言。害人害己,哪有好身体。后悔啊,辜负了花样年华。感恩节,开始好好思索!

    2014年01月20日 12:28:07 回复 取消回复
  4. 4 楼 访客

    圣诞树上耀眼的彩灯,那是我祈祷你平安一生;圣诞夜里悠扬的钟声,那是我祝福你快乐一生。

    2014年01月21日 04:00:31 回复 取消回复
  5. 5 楼

    老师今天是教师节,您在睡懒觉吗?我们乖,不打电话吵醒您,您多睡一会儿吧!

    2014年01月23日 01:22:10 回复 取消回复
  6. 6 楼 访客

    1.有这样一个儿子,他是个大款,母亲老了,牙齿全坏掉了,于是他开车带着母亲去镶牙,一进牙科诊所,医生开始推销他们的假牙,可母亲却要了最便宜的那种。 医生不甘就此罢休,他一边看着大款儿子,一边耐心地给他们比较好牙与差牙的本质不同。可是令医生非常失望的是,这个看是大款的儿子却无动于衷,只顾着自己打电话抽雪茄,根本就不理会他。医生拗不过母亲,同意了她的要求 。这时,母亲颤颤悠悠地从口袋里掏出一个布包,一层一层打开,拿出钱交了押金,一周后再准备来镶牙。两人走后,诊所里的人就开始大骂这个大款儿子,说他衣冠楚楚,吸的是上等的雪茄,可却不舍得花钱给母亲镶一副好牙。正当他们义愤填膺时,不想大款儿子又回来了,他说:“医生,麻烦您给我母亲镶最好的烤瓷牙,费用我来出,多少钱都无所谓。不过您千万不要告诉她实情,我母亲是个非常节俭的人,我不想让她不高兴。2.我上床的时候是晚上11点,窗户外面下着小雪。我缩到被子里面,拿起闹钟,发现闹钟停了,我忘买电池了。天这么冷,我不愿意再起来。我就给妈妈打了个长途电话: “妈,我闹钟没电池了,明天还要去公司开会,要赶早,你六点的时候给我个电话叫我起床吧。”妈妈在那头的声音有点哑,可能已经睡了,她说:“好,乖。” 电话响的时候我在做一个美梦,外面的天黑黑的。妈妈在那边说:“小桔你快起床,今天要开会的。”我抬手看表,才五点四十。我不耐烦地叫起来,“我不是叫你六点吗?我还想多睡一会儿呢,被你搅了!”妈妈在那头突然不说话了,我挂了电话。 起来梳洗好,出门。天气真冷啊,漫天的雪,天地间茫茫一片。公车站台上我不停地跺着脚。周围黑漆漆的,我旁边却站着两个白发苍苍的老人。我听着老先生对老太太说:“你看你一晚都没有睡好,早几个小时就开始催我了,现在等这么久。” 是啊,第一趟班车还要五分钟才来呢。终于车来了,我上车。开车的是一位很年轻的小伙子,他等我上车之后就轰轰地把车开走了。我说:“喂,司机,下面还有两位老人呢,天气这么冷,人家等了很久,你怎么不等他们上车就开车?” 那个小伙子很神气地说:“没关系的,那是我爸爸妈妈!今天是我第一天开公交,他们来看我的!” 我突然就哭了——我看到爸爸发来的短消息:“女儿,妈妈说,是她不好,她一夜没有睡好,很早就醒了,担心你会迟到。”看过后,记得做一个孝顺的子女。这一辈子,能让你欠太多的,而且不求回报的只有父母,不要抱怨父母的唠叨…… 多多体谅他们、感恩他们、天冷了 父母要的其实并不多,冬天一句温暖的问候 多多关心他们!懂得的要赞~我喜欢

    2014年02月10日 10:42:15 回复 取消回复
  • 评论最多
  • 最新评论
  • 随机文章
footer logo
未经许可请勿自行使用、转载、修改、复制、发行、出售、发表或以其它方式利用本网站之内容
Copyright © zhaorong All Rights Reserved. 滇ICP备15006105号-1