发生WPF XAML解析异常

本文关键字:异常 XAML WPF 发生 | 更新日期: 2023-09-27 18:15:36

我有以下例外:'System.Windows.Markup.XamlParseException' in PresentationFramework.dll我找了一下,在这里找到了这个线程

显然CTRL+ALT+E方法和检查所有异常没有解决我的问题-或者我使用它不正确。我检查了所有的异常,它把我带到了主窗口的InitializedComponent()函数,就是这样。什么好主意吗?我发送我所有的XAML代码:MainWindow

<Window x:Class="DPCKOU_prog3hf_pong.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:DPCKOU_prog3hf_pong"
    mc:Ignorable="d"
    Title="PongGame" Height="406" Width="717"
    Loaded="Window_Loaded"
    KeyDown="Window_KeyDown"
    >
<Canvas Background="{StaticResource fieldBGSP}">
    <Rectangle Canvas.Left="{Binding Path=Pad.Area.X}"
                   Canvas.Top="{Binding Path=Pad.Area.Y}"
                   Width="{Binding Path=Pad.Area.Width}"
                   Height="{Binding Path=Pad.Area.Height}"
                   Fill="{StaticResource RectangleFill}"/>
    <Ellipse Canvas.Left="{Binding Path=Ball.Area.X}"
                   Canvas.Top="{Binding Path=Ball.Area.Y}"
                   Width="{Binding Path=Ball.Area.Width}"
                   Height="{Binding Path=Ball.Area.Height}"
                   Fill="{StaticResource EllipseFill}"/>
    </Canvas>
</Window>

和我的App.xaml:

<Application x:Class="DPCKOU_prog3hf_pong.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:local="clr-namespace:DPCKOU_prog3hf_pong"
         xmlns:sys="clr-namespace:System;assembly=mscorlib"
         StartupUri="MainWindow.xaml">
    <Application.Resources>
        <SolidColorBrush x:Key="RectangleFill" Color="#FF0F4228"/>
        <SolidColorBrush x:Key="EllipseFill" Color="#FF207CBB"/>
          <ImageBrush x:Key="fieldBGMP" ImageSource="pack://application:,,,/texturesExport/background.png"/>
        <ImageBrush x:Key="fieldBGSP" ImageSource="pack://application:,,,/texturesExport/pong_ingameSP.png"/>
    </Application.Resources>
</Application>

编辑

我在Canvas之前的>符号处得到错误。在编辑器中,背景图像显示得很好。不知道是什么原因导致了这个问题。

我用pack uri方法更新了我的代码。

发生WPF XAML解析异常

是否将图像的构建操作设置为资源?此外,您可以尝试使用包uri图像源,在这种情况下,它将是pack://application:,,,/texturesExport/background.png

如果*.xaml.cs文件中没有代码,那么问题可能与正确评估ImageSource属性有关。

注释掉两个imagebrush,看看是否会导致异常消失。

这是你的问题的解决方案