Windows Phone 7 開發 31 日談——第23日:提供試用版應用程式
By Jeff Blankenburg
本文是 “Windows Phone 7 開發 31 日談” 系列的第23日。
昨天,我寫了如何將遊戲新增到電話的遊戲中心中。今天,我會向你展示為應用程式新增試用內容是多麼簡單。例如,假設你建立了一個50關的遊戲。可能你想讓使用者能免費體驗前5關,但要想玩後面的,他們就需要購買這個遊戲。本文就像你展示如何做到。
使用LicenseInformation類
通過向我們的頁面中新增Microsoft.Phone.Marketplace程式集和相應的名稱空間,就可以訪問LicenseInformation類了,它直接與程式的“付費”狀態相關。
- using Microsoft.Phone.Marketplace;
下一步是真正地使用LicenseInformation類,來建立一個例項:
- LicenseInformation li = new LicenseInformation();
最後,LicenseInformation有一個非常棒的返回布林值的方法叫IsTrial(),毫無懸念,它允許我們檢測程式是否處於試用狀態。你可以很方便地將它用於一個if語句,就像這樣:
- if (!li.IsTrial())
- {
- //Do something that only paid users can do.
- }
- else
- {
- //Do something that all users, trial or paid, can do.
- }
測試試用模式
不幸的是,沒有一種用來在試用和已付款狀態間切換的內建機制。不過這處理起來很簡單。我使用了在App.xaml.cs檔案中相同的if語句。用它來檢測你是否在除錯,如果是,建立一個被我叫做“trialMode”的IsolatedStorageSetting。
下面是整個App()方法,包括App.xaml.cs檔案自動生成的程式碼。在下面的例子中,我將trialMode設為了TRUE。當你測試“已付費”模式時要將它關閉。
- IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
- public App()
- {
- // Global handler for uncaught exceptions.
- UnhandledException += Application_UnhandledException;
- settings["trialMode"] = false;
- // Show graphics profiling information while debugging.
- if (System.Diagnostics.Debugger.IsAttached)
- {
- settings["trialMode"] = true;
- // Display the current frame rate counters.
- Application.Current.Host.Settings.EnableFrameRateCounter = true;
- // Show the areas of the app that are being redrawn in each frame.
- //Application.Current.Host.Settings.EnableRedrawRegions = true;
- // Enable non-production analysis visualization mode,
- // which shows areas of a page that are being GPU accelerated with a colored overlay.
- //Application.Current.Host.Settings.EnableCacheVisualization = true;
- }
- // Standard Silverlight initialization
- InitializeComponent();
- // Phone-specific initialization
- InitializePhoneApplication();
- }
回顧一下早先的程式碼,我需要修改if語句來處理這個新的IsolatedStorageSettings值。這次我包含了整個MainPage.xaml.cs檔案,所以結合上下文你可以看到所有的內容。
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Animation;
- using System.Windows.Shapes;
- using Microsoft.Phone.Controls;
- using Microsoft.Phone.Marketplace;
- using System.IO.IsolatedStorage;
- namespace Day23_UsingTrial
- {
- public partial class MainPage : PhoneApplicationPage
- {
- LicenseInformation li = new LicenseInformation();
- IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
- // Constructor
- public MainPage()
- {
- InitializeComponent();
- if (!li.IsTrial()||(bool)settings["trialMode"] == false)
- {
- //Do something that only paid users can do.
- }
- else if (li.IsTrial() || (bool)settings["trialMode"] == true)
- {
- //Do something that all users, trial or paid, can do.
- }
- }
- }
- }
這就是所有你需要做的,當然這並不是“最好的”處理這種問題的方法,但對我來說它的確可以工作。如果誰有什麼好的方法,我很樂意去用。
下載示例程式碼
通過一個可以執行的例子來看以上所有內容,下載這個解決方案並研究它。這始終是學習的一個好方法。
相關文章
- Windows Phone應用效能監控與分析技巧Windows
- 淺談桌面應用程式的開發
- 當前低程式碼開發平臺給哪些應用程式開發提供支援
- Python開發Windows桌面應用程式(三)應用程式打包成exeWindows可執行檔案PythonWindows
- 安裝用於 Windows 應用開發的工具Windows
- windows10系統設定和使用Your Phone應用的方法Windows
- 本週三晚19:00Hello HarmonyOS應用篇第7課—分散式應用開發分散式
- 因開發ChatGPT應用被約談ChatGPT
- 7月31日,HarmonyOS開發者日將於杭州舉辦
- Windows 應用開發的系統要求Windows
- Windows應用程式基礎Windows
- 用低程式碼開發平臺開發應用可靠嗎
- Invicti v24.10.0 for Windows - Web 應用程式安全測試WindowsWeb
- Invicti v24.7.0 for Windows - Web 應用程式安全測試WindowsWeb
- Invicti v24.3.0 for Windows - Web 應用程式安全測試WindowsWeb
- Invicti v24.4.0 for Windows - Web 應用程式安全測試WindowsWeb
- Invicti v24.6.0 for Windows - Web 應用程式安全測試WindowsWeb
- Golang 編譯windows應用程式Golang編譯Windows
- 7款最佳安卓日曆應用安卓
- Acunetix v24.7 (Linux, Windows) - Web 應用程式安全測試LinuxWindowsWeb
- 請教怎樣測試工具類的 windows 應用程式?Windows
- Win10系統下解除安裝Your Phone應用程式的方法Win10
- BusyCal for Mac(日曆應用程式)Mac
- Serverless 應用開發的 7 個經驗心得Server
- 低程式碼應用程式開發開始興起
- 離散數學及其應用 (第2版)
- Epinio:Kubernetes 的應用程式開發引擎
- 移動應用程式開發簡介!
- Spring Shell應用程式開發流程解析Spring
- Windows之應用安裝程式 —— wingetWindows
- 微軟在Windows 11開發版裡帶來新的應用選擇器微軟Windows
- 用vscode開發vue應用VSCodeVue
- 低程式碼適用於哪些應用開發場景
- [譯] 用 Flutter 開發你的第一個應用程式Flutter
- Adjust最新報告:2021年第1季度移動應用增長31%
- 將windows應用程式註冊為windows服務Windows
- 在零程式碼開發平臺上如何開發應用程式
- 5.9安卓開發日記31安卓
- 7月18日—7月24日共有31款遊戲開測|GameRes遊戲GAM