我已经从我的 WPF 应用程序创建了一个 ClickOnce 应用程序部署 list ,但是当我尝试安装它时,它崩溃了,我收到以下错误日志:

Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01:   phynix.exe
Problem Signature 02:   1.0.0.0
Problem Signature 03:   54b90fb3
Problem Signature 04:   mscorlib
Problem Signature 05:   4.0.30319.17929
Problem Signature 06:   4ffa561c
Problem Signature 07:   43c4
Problem Signature 08:   105
Problem Signature 09:   System.Windows.Markup.XamlParse
OS Version: 6.1.7601.2.1.0.256.48
Locale ID:  1031
Additional Information 1:   0a9e
Additional Information 2:   0a9e372d3b4ad19135b953a78882e789
Additional Information 3:   0a9e
Additional Information 4:   0a9e372d3b4ad19135b953a78882e789

Read our privacy statement online:
http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt

有人知道是什么问题吗??

最佳答案

XamlParse 异常意味着无法读取 XAML 或无法正确执行从它生成的代码。

通常这是:

  • 不作为资源包含在项目中的图像文件,或位于部署机器上不可用的位置;
  • 缺少引用的程序集和/或其依赖项。
  • 关于c# - XamlParse 上部署的应用程序崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27985657/

    10-10 22:37