Windows Phone 7 學習筆記三——文字框輸入範圍

來源:互聯網
上載者:User

      WP7 對於在輸入的時候可以設定文字框的輸入範圍。也就是說,在對於文本輸入的時可以設定不能的鍵盤。比如:設定數字時,只調用數字鍵台出來,電子郵件也如此。由於目前在對文字框設定範圍時,沒有智能提示,只能查詢API了,可能這是WP7 這個版本的問題了。

1、只能對資料輸入時用

<TextBlock Text="your number" Style="{StaticResourcePhoneTextLargeStyle}" />
<TextBox InputScope="Number" Name="txtNumber"Height="71"Width="460" />

2、輸入個人名稱及資訊

  <TextBlock Text="your name" Style="{StaticResource PhoneTextLargeStyle}" />
<TextBox InputScope="PersonalFullName" Name="txtName" Height="71" Width="460" />

3、輸入地址資訊

<TextBlock Text="what country are you from?" Style="{StaticResourcePhoneTextLargeStyle}" />
<TextBox InputScope="AddressCountryName" Name="txtCountry"Height="71"Width="460" />

4、電子郵件

<TextBlock Text="your email" Style="{StaticResource PhoneTextLargeStyle}" />
<TextBox InputScope="EmailNameOrAddress" Name="txtEmail" Height="71" Width="460" />

5、URL

<TextBlockText="your favorite website" Style="{StaticResourcePhoneTextLargeStyle}" />
<TextBox InputScope="Url" Name="txtWebsite"Height="71"Width="460" />

6、電話號碼

<TextBlockText="call your best friend" Style="{StaticResourcePhoneTextLargeStyle}" />
<TextBox InputScope="TelephoneNumber" Name="txtFriend"Height="71"Width="460" />

 

其歸納起來就六個枚舉型

枚舉值

說明

Number 調用輸入數字鍵台
PersonalFullName 調用字母鍵盤
AddressCountryName 調用字母鍵盤
EmailNameOrAddress 調用有@,.COM的鍵盤
Url 調用有www,http.鍵盤
TelephoneNumber 調用數字鍵台
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.