using System; using System.Collections.Generic; using System.IO; using System.Linq; using Windows.ApplicationModel; using Windows.ApplicationModel.Activation; using Windows.Foundation; using Windows.Foundation.Collections; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Primitives; using Windows.UI.Xaml.Data; using Windows.UI.Xaml.Input; using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Navigation; // 空白應用程式範本已記錄在 http://go.microsoft.com/fwlink/?LinkId=234227 namespace GridViewTest { ///SyntaxHighLighter 3.0.83 高亮程式碼 在Google Blogger使用方法/// 提供應用程式專屬行為以補充預設的應用程式類別。 /// sealed partial class App : Application { ////// 初始化單一應用程式物件。這是第一行執行之撰寫程式碼, /// 而且其邏輯相當於 main() 或 WinMain()。 /// public App() { this.InitializeComponent(); this.Suspending += OnSuspending; } ////// 在應用程式由使用者正常啟動時叫用。其他進入點 /// 將在啟動應用程式以開啟特定檔案時使用,以顯示 /// 搜尋結果等。 /// /// 關於啟動要求和處理序的詳細資料。 protected override void OnLaunched(LaunchActivatedEventArgs args) { Frame rootFrame = Window.Current.Content as Frame; // 當視窗已經有內容時,不重複應用程式初始化, // 只確定視窗是作用中 if (rootFrame == null) { // 建立框架做為巡覽內容,並巡覽至第一頁 rootFrame = new Frame(); if (args.PreviousExecutionState == ApplicationExecutionState.Terminated) { //TODO: 從之前暫停的應用程式載入狀態 } // 將框架放在目前視窗中 Window.Current.Content = rootFrame; } if (rootFrame.Content == null) { // 在巡覽堆疊未還原時,巡覽至第一頁, // 設定新的頁面,方式是透過傳遞必要資訊做為巡覽 // 參數 if (!rootFrame.Navigate(typeof(MainPage), args.Arguments)) { throw new Exception("Failed to create initial page"); } } // 確定目前視窗是作用中 Window.Current.Activate(); } ////// 在應用程式暫停執行時叫用。應用程式狀態會儲存起來, /// 但不知道應用程式即將結束或繼續,而且仍將記憶體 /// 的內容保持不變。 /// /// 暫停之要求的來源。 /// 有關暫停之要求的詳細資料。 private void OnSuspending(object sender, SuspendingEventArgs e) { var deferral = e.SuspendingOperation.GetDeferral(); //TODO: 儲存應用程式狀態,並停止任何背景活動 deferral.Complete(); } } }
2014/06/24
經過 保哥 指點,我終於學會了如何使用 SyntaxHighLighter 高亮程式碼 在Google Blogger使用方法
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言