WPF XAML解析异常?

时间:2014-04-07 02:32:29

标签: c# wpf xaml exception

我正在研究WPF应用程序,它运行正常。我注释掉了一个if检查以测试实用程序类中的某些东西,并且由于XAML Parse异常,我的程序突然停止运行。它指向的XAML部分是开始标记和此属性:

xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

完整的标签是:

<Window x:Class="MyApplication.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="Auto" Width="Auto" WindowStartupLocation="CenterScreen" Topmost="False" KeyUp="KeyUpCheck" SizeToContent="WidthAndHeight" ResizeMode="NoResize" mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" d:DesignWidth="441" d:DesignHeight="319">

确切的错误是:

  

'在类型'MyApplication.MainWindow'上调用与指定绑定约束匹配的构造函数会引发异常。行号'4'和行位置'291'。

该属性是我在视口中调整表单大小时生成的属性。我完全不知道为什么它会给我这个错误。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

“在'MyApplication.MainWindow'类型上调用构造函数......引发异常” 打开抛出的异常,看看你的构造函数中抛出了什么异常。