在Windows Phone 8中检查市场中的应用程序版本

时间:2014-02-06 10:54:43

标签: c# windows-phone-8

我需要比较当前的应用版本和市场应用版本。

if (CurrentAppVersion() < MarketPlaceAppVersion()) {
                MessageBox.Show("You need to update your app");
            }

private int CurrentAppVersion() {
            return 0;
        }

        private int MarketPlaceAppVersion() {
            return 0;
        }

我有一个this link来查看当前的应用版本。我怎样才能获得市场应用版本。

1 个答案:

答案 0 :(得分:0)

我自己没有使用过这个功能,但我在一个名为cimbalino的开源工具包中看到过这个问题,你可以在http://cimbalino.org/找到它

其来源可在https://github.com/Cimbalino/Cimbalino-Phone-Toolkit

的github上找到

以下诺基亚开发者帖子描述了它的实际工作原理 http://developer.nokia.com/community/wiki/Checking_for_updates_from_inside_a_Windows_Phone_app