windows phone 7 學習筆記——常用小工具(一)

來源:互聯網
上載者:User

關注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上傳有問題,以後。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.