Win8 WP迁入Win10 UWP - Error : DEP0700 和差异处

Scenario:

出现这个bug 的情况是我把一个原来使用win8成功运行的一个小程序原封搬到win10后运行所报的错误。

Error Description:

Error : DEP0700 : Registration of the app failed. AppxManifest.xml(29,27): error 0x80070002: Cannot install or update package 277f4cf9-9f7f-4a31-92b2-657ba888687f_ve1y2v9yftcpw because the splash screen image [SplashScreen.png] cannot be located. Verify that the package contains an image that can be used as a splash screen for the application, and that the package manifest points to the correct location in the package where this splash screen image can be found. (0x80073cf6) UWP_Weather

Why:

手贱把原来放在Assets中的图片资源删除掉了,原来启动程序时还需要用到这些图片。

Approach:

图片放回去


还遇到一个粗心大意的问题,在复制代码的时候,xaml的partial class中漏洞了在加默认构造函数初始化view,导致后面使用到control时都报null错误,郁闷,找了好久,最后才发现:

public Curve()
        {
            this.InitializeComponent();
        }


Difference:

有些地方也可以说是疑惑处.

  • 页面背景设置图片时Win8 可以在设置Page.Background,而Win10中不生效,最后改成在Grid.Background.

             -- 改成 -->    




你可能感兴趣的:(Win,10,Bug)