gpt4 book ai didi

xaml - Generic.xaml xaml 编译在控件样式上给出错误 WMC0610(XBF 生成错误代码 0x3e9)

转载 作者:行者123 更新时间:2023-12-04 17:46:40 32 4
gpt4 key购买 nike

在库中编译 XAML 时出现以下错误:

Themes\Generic.xaml(35,12): XamlCompiler error WMC0610: XBF generation error code 0x03e9.



它失败的 XAML 代码(第 35 行)是:
<Style TargetType="annotations:CanvasAnnotationItem" xmlns:annotations="using:ACME.Controls.CanvasAnnotation">

没有额外的信息来帮助解决错误。

最佳答案

出于某种原因,XAML 编译器不知道如何处理该本地命名空间(直接在样式上定义的命名空间)。将它移到文件顶部解决了这个问题:

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:annotations="using:ACME.Controls.CanvasAnnotation"
xmlns:local="using:ACME.Controls">

在元素本身中:
<Style TargetType="annotations:CanvasAnnotationItem">

关于xaml - Generic.xaml xaml 编译在控件样式上给出错误 WMC0610(XBF 生成错误代码 0x3e9),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32231928/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com