Fork me on GitHub

UWP 判断Windows10系统版本

        public static Boolean Windows10Build10240 => ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 1, 0);
        public static Boolean Windows10Build10586 => ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 2, 0);
        public static Boolean Windows10Build14393 => ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 3, 0);
        public static Boolean Windows10Build15063 => ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 4, 0);

if(VersionsHelper.Windows10Build15063)
{
}

 

posted @ 2017-10-02 16:21  猫叔Vincent  阅读(699)  评论(0编辑  收藏  举报