1. 在Windows Phone 7中最簡單的操作IsolatedStorge的代碼: SaveNote()將文本框內(nèi)容保存到Note.txt中,E " /> 亚洲第一视频网,一级特黄aa大片免费,成人羞羞

一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

Windows Phone 7 Tips (2)

  上一篇Tips:Windows Phone 7 Tips (1), 今天也是分享10個Windows Phone 7 技巧,并提供離線文檔下載。
  1. 在Windows Phone 7中最簡單的操作IsolatedStorge的代碼: SaveNote()將文本框內(nèi)容保存到Note.txt中,Edit()讀取Note.txt到文本框中。

  2. Windows Phone 7中的Orientation。

  分為 Portrait(豎屏)和Landscape(直屏)和PortraitOrLandscape(豎屏或橫屏,在切換橫豎屏?xí)r會自動切換)。并且又分為支持方向和啟動方向,支持方向支持Portrait、Landscape和PortraitOrLandscape,啟動方向支持Landscape、LandscapeLeft、LandscapeRight、Portrait、PortraitDown和PortraitUp。

  3. Windows Phone 7中常見的UI布局控件比較。

  Canvas:絕對定位控件,速度快,可用于游戲

  Grid:網(wǎng)格定位控件,比較常用。

  StackPanel:自動定位控件,推薦使用與小區(qū)域。

  4. 簡單敘述下Windows Phone 7中的生命周期。以下的一張圖會對你有所幫助:

  具體的應(yīng)用程序的事件及什么時候觸發(fā)如下表: 

Application EventOccurs WhenYour Actions
Application_LaunchingThe user taps the entry for an application on the installed applications screen, and a new instance of an application is created.Do not read application settings from the isolated storage as that will slow down the loading process; do not attempt to restore transient state. When an application launches, it should always appear as a new instance.
Application_ActivatedFor this event to occur, two conditions must be met: (1) the user navigates away from your application, either by using a launcher or a chooser, or by starting another application and (2) the user then comes back to your application by either completing the launcher or chooser or using the hardware Back button. This event is not raised when an application is first launched.The application should allow the user to continue interaction as if she had never left the application; transient state information should be restored, but the application should not attempt to read the contents of the isolated storage to avoid potential slowdown.
Application_DeactivatedThe user navigates away from your application either by invoking a launcher or a chooser, or by launching another application. This event is not raised when your application is closing.You should save all transient (i.e., related to the current application session) state into the State dictionary. You should save persistent state to an isolated storage. Applications are given ten seconds to complete this event; after ten seconds, if this event is still not completed, an application will be terminated and not tombstoned.
Application_ClosingThe user uses the Back key to navigate past the first page of your application.

Save all of the persistent state into the isolated storage. 

  5. 確保你的Windows Phone 7 應(yīng)用程序的第一個頁面在5秒內(nèi)加載渲染好,在20秒內(nèi)你的應(yīng)用程序可用!

  6. Windows Phone 7 中圖片為Resource和Content的區(qū)別: 生成方式為Resource的圖片會被編譯到應(yīng)用程序集(DLL)里,而生成方式為Content的圖片則會被部署到XAP包中。

  當(dāng)你把你的圖片copy到項目中,圖片的生成動作默認(rèn)是資源(Resource),但我通常選擇Content以獲取更快的速度。我們應(yīng)該如何選擇圖片的生成方式(Build Action)呢? 每種生成方式都有其用武之地:設(shè)置生成方式為Content意味著應(yīng)用程序可以更快的加載圖片資源;將生成方式設(shè)為Resource對你重新部署程序非常有用,這對類庫項目十分合適的。

  7. Windows Phone 7中的物理回退鍵:在Tips (1)中曾講到如何在PhoneApplicationPage_BackKeyPress事件中禁用物理回退鍵,即e.Cancel = true; 如果我們不編寫代碼,則當(dāng)我們點(diǎn)擊回退鍵時,Windows Phone 7會做哪些事情呢?據(jù)我所知,有如下三種情況:

  (1). 當(dāng)你點(diǎn)擊回退按鈕式,程序必須返回上一個頁面。

  (2). 如果你是在程序的第一個頁面點(diǎn)擊回退按鈕,則應(yīng)用程序必須推出。

  (3). 如果你的應(yīng)用程序真在現(xiàn)實(shí)一個對話框或者Context Menu,點(diǎn)擊回退按鈕時,Windows Phone 7自動關(guān)閉對話框或者 Context Menu。

  8. 在Windows Phone 7 應(yīng)用程序會有兩種不同數(shù)據(jù):持久性數(shù)據(jù)(Persistent Data)和瞬態(tài)狀態(tài)(Transient State)。

  持久性數(shù)據(jù):如配置文件(settings)、隔離存儲空間(IsolatedStorage)。

  瞬態(tài)狀態(tài):存在于某個特定的程序回話中,如頁面狀態(tài),web 請求緩存,瞬態(tài)狀態(tài)以PhoneApplicationService.State 屬性存在。

 有效性范圍存儲位置讀/寫
持久性數(shù)據(jù)Phone上的所有應(yīng)用程序IsolatedStorage程序打開/關(guān)閉,或者程序運(yùn)行時
瞬態(tài)狀態(tài)應(yīng)用程序回話PhoneApplicationService的State屬性程序無效/激活時

  9. 我們最好不要在應(yīng)用程序的Application_Launching和Application_Activated 事件中從隔離存儲空間中加載數(shù)據(jù),因為這樣會使我們的程序啟動變慢。

  10. IsolatedStorageSetttings 類提供一個簡單序列化數(shù)據(jù),我們可以使用現(xiàn)有的序列化方法(如json等)將數(shù)據(jù)持久到隔離存儲空間中。

  CHM文件下載:(41KB)

it知識庫Windows Phone 7 Tips (2),轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 精品一区二区三区四区五区六区 | 精品视频免费观看 | 黑人和黑人激情一级毛片 | 久久久久久九九 | 久久久精品麻豆 | 国产精品视频99 | 亚洲午夜精品aaa级久久久久 | 国产精品成人久久久 | 午夜精品免费 | 午夜国产精品视频 | 国产全黄三级国产全黄三级书 | 国产视频资源 | 日本激情视频网站w | 伊人久久成人成综合网222 | 国产成人精视频在线观看免费 | 狼人久草 | 久草手机在线播放 | 欧美日韩一二三区 | 国产黄色小视频在线观看 | 一级做a爰片久久毛片一 | 凹凸精品视频分类国产品免费 | 欧美大尺度无遮挡性视频 | 美女张开腿给人网站 | 天天弄天天干 | 国产精品中文 | 亚洲最大福利网站 | 中文字幕二区三区 | 久久免费区一区二区三波多野 | 欧美成人全部免费观看1314色 | 国产高清视频a在线大全 | 免费毛片在线视频 | 好吊色欧美一区二区三区四区 | 色六月婷婷 | 亚洲精品天堂在线观看 | 国产精品久久久久久久久ktv | 久久久久久久岛国免费播放 | 日本欧美一区二区三区不卡视频 | 91免费片| 五月婷婷在线视频 | 黄色小视频免费在线观看 | 国产一区二区免费不卡在线播放 |