Windows Phone 7 Tips (1)

來源:互聯網
上載者:User

學習Windows Phone 7也有一段時間了,也整理了一些不錯的知識點,下面一個系列將會每篇部落格分享10個Windows Phone 7 技巧,並且提供離線文檔下載。

 

1. Windows Phone 7 應用程式不能運行在後台,不支援多任務【但我們可以使用墓碑機制Tombstoning】

2. Windows Phone 7 應用程式的xap包最大運行為400MB

3. 設定應用程式的ico表徵圖:右擊項目--設定icon為自己的圖片即可

4. 替換預設的windows phone 7 的啟動畫面:將SplashScreenImage替換為自己的圖片即可

5. 設定Windows Phone 7應用程式的啟動頁面:在WMAppManifest.xml中設定

<Tasks>
<DefaultTask Name="_default" NavigationPage="MainPage.xaml" />
</Tasks>

6. Windows Phone 7 頁面導航支援使用別名,使用方法如下:

在App.xaml中配置匹配別名,添加命名空間

 配置匹配標籤如下: 

 

 然後在其後置代碼App.xaml.cs的App()方法中添加如下代碼:

 

 然後我們就可以在XAML代碼中使用別名來找到具體的頁面了 

 

7. Windows Phone 7 最簡單的頁面傳值 

傳遞頁  

 

接受頁 在Load事件中
if (NavigationContext.QueryString.ContainsKey("username")) { tbUserName.Text = NavigationContext.QueryString["username"].ToString(); }
8. 禁用物理回退鍵 :重寫頁面的BackKeyPress事件
private void PhoneApplicationPage_BackKeyPress(object sender, System.ComponentModel.CancelEventArgs e) { e.Cancel = true; }
9. Windows Phone 7 中隱藏和顯示系統托盤 
Microsoft.Phone.Shell.SystemTray.IsVisible = true;
10. Application Bar最多支援4個操作表徵圖,Application Bar中不支援資料繫結,需要使用C#代碼在後置代碼中控制.並且推薦使用透明度數值為0,0.5和1. 

 為了方便大家離線閱讀,製作CHM檔案,檔案下載:Windows Phone 7 Tips (1).chm (7kb)

  

相關文章

聯繫我們

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