Windows Phone l 24 1 Windows Phone l

  • Slides: 34
Download presentation

第二十四章 Windows Phone 應用程式設計 l 24. 1 Windows Phone 簡介 l 24. 2 第一個

第二十四章 Windows Phone 應用程式設計 l 24. 1 Windows Phone 簡介 l 24. 2 第一個 Windows Phone 應用程式 l 24. 3 Windows Phone 撥打電話功能 l 24. 4 Windows Phone Bing Maps 路徑規劃 l 24. 5 Windows Phone 影像設定 l 24. 6 Windows Phone Long. List. Selector 長清單選項 l 24. 7 台北市溫泉景點查詢 App 實作

24. 1 Windows Phone 簡介 l Windows Phone為微軟的行動作業系統, 最新版本 8. 0。 l Windows Phone

24. 1 Windows Phone 簡介 l Windows Phone為微軟的行動作業系統, 最新版本 8. 0。 l Windows Phone 8 以全新 Windows NT 核心 取代 Windows CE 架構 l 由於Windows Phone 8 和 Windows 8 有許多 共用元件,使得 Windows Phone 8 與 Windows 8 應用程式開發或技術移轉變得更容易。

24. 1 Windows Phone 簡介 Continue… l 欲開發 Windows Phone 8 應用程式 可用 VS

24. 1 Windows Phone 簡介 Continue… l 欲開發 Windows Phone 8 應用程式 可用 VS 2013 l 若沒VS 2013,連線下載網址 http: //www. visualstudio. com/downloads/downloadvisual- studio-vs 網站 l 下載 Visual Studio 2012 Express for Windows Phone 開發 具,透過此 具即可開發Windows Phone 應用程式。

24. 2 第一個 Windows Phone 應用程式

24. 2 第一個 Windows Phone 應用程式

Step 1 建立 Windows Phone 應用程式專案 l

Step 1 建立 Windows Phone 應用程式專案 l

Step 2 設計 Windows Phone頁面的使用者介面

Step 2 設計 Windows Phone頁面的使用者介面

24. 5 Windows Phone 影像設定 l Windows Phone 可透過 Image 控制項來顯示 指定的圖檔。 l 做法是指定該控制項物件的

24. 5 Windows Phone 影像設定 l Windows Phone 可透過 Image 控制項來顯示 指定的圖檔。 l 做法是指定該控制項物件的 Source屬性。 l [簡例] 在img控制項顯示「images/小鴨 1. jpg」圖檔 Uri uri = new Uri("images/小鴨 1. jpg",Uri. Kind. Relative); img. Source = new Bitmap. Image(uri);