關注WP 7 好久了,也在網上看牛人寫的部落格很好,從他們中學到了很多的東西。記錄新技術的學習過程,並協助別人一起學習它。學習的宗旨“一起學習共同進步”;
今天寫了兩個常用的小工具特與大家分享。
說明:這個兩個小工具都要用到第三方提供的服務。
小工具一:手機號歸屬地查詢。
運行結果如下:
代碼如下:
private void btnQuery_Click(object sender, RoutedEventArgs e) { client.getMobileCodeInfoCompleted += new EventHandler<Mobile.getMobileCodeInfoCompletedEventArgs>(client_getMobileCodeInfoCompleted); progressBar.Visibility = System.Windows.Visibility.Visible; if (tbPhone.Text != "") { client.getMobileCodeInfoAsync(tbPhone.Text, ""); } else { MessageBox.Show("電話號不可為空!", "提示", MessageBoxButton.OK); } } void client_getMobileCodeInfoCompleted(object sender, Mobile.getMobileCodeInfoCompletedEventArgs e) { if (e.Error == null) { tbDisplayAddress.Text = e.Result; } }
小工具二:郵遞區號查詢。
運行結果如下:
代碼如下:
void btnQuery_Click(object sender, RoutedEventArgs e) { client.getAddressByZipCodeCompleted += new EventHandler<ChinaZip.getAddressByZipCodeCompletedEventArgs>(client_getAddressByZipCodeCompleted); if (txtPostCode.Text == "") { txtAddress.Text = "沒有聯結資料!"; } else { client.getAddressByZipCodeAsync(txtPostCode.Text, ""); } } void client_getAddressByZipCodeCompleted(object sender, ChinaZip.getAddressByZipCodeCompletedEventArgs e) { if (e.Error == null) { txtAddress.Text = e.Result.Nodes[0].Value.ToString(); } }
非常簡單的兩個小程式,代碼非常的簡單。
程式只用著學習使用,不用作商業應用。
原本想上傳代碼的,可是SkyDrive上傳有問題,以後。