在写WPF程序时,出现了以下错误,看错误名,应该是xaml的解释器未找到StaticResourceExtension的资源,后来参考文章:
https://muzizongheng.blog.csdn.net/article/details/85127317
我发现StaticResource用于xaml加载时使用ResourceDictionary中x:Key定义的资源,必须先定义再使用,不然会抛出异常。原来的xaml代码如下:
<Window x:Class="WpfStringResources.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:WpfStringResources"
xmlns:system="clr-namespace:System;assembly=mscorlib"
mc:Ignorable="d"
Title="MainWindow" Height="357" Width="500">
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<TextBlock x:Name="name1" Text="{StaticResource ResourceKey=name1}" Margin="90,70"/>
<TextBlock Text="{StaticResource ResourceKey=name2}" Margin="90,70" Grid.Column="1"/>
<TextBlock Text="{DynamicResource ResourceKey=name3}" Margin="90,70" Grid.Row="1"/>
<TextBlock Text="{DynamicResource ResourceKey=name4}" Margin="90,70" Grid.Row="1" Grid.Column="1"/>
</Grid>
<Window.Resources>
<system:String x:Key="name1">床前明月光,</system:String>
<system:String x:Key="name2">疑是地上霜。</system:String>
<system:String x:Key="name3">举头望明月,</system:String>
<system:String x:Key="name4">低头思故乡。</system:String>
</Window.Resources>
</Window>
将定义的window.Resources放在<Grid>之前就能成功运行了!
System.Windows.Markup.XamlParseException:““在“System.Windows.StaticResourceExtension”上提供值时引发了异常
在写WPF程序时,出现了以下错误,看错误名,应该是xaml的解释器未找到StaticResourceExtension的资源,后来参考文章:https://muzizongheng.blog.csdn.net/article/details/85127317我发现StaticResource用于xaml加载时使用ResourceDictionary中x:Key定义的资源,必须先定义再使用,不然会抛出异常。原来的xaml代码如下:<Window x:Class="WpfStringRes.
System.Windows.Markup.XamlParseException:““在“System.Windows.StaticResourceExtension”上提供值时引发了异常。”,行号为“42”,行位置为“40”。
根据报错信息检查到报错的位置,发现在UI页面写错了控件的Style值
<Label Content="中文名称:" Style="{StaticResource RightContentLabel}" />
改正过来即可
切换到.net Core 3.1后突然资源字典里面图片资源报错找不到(其他资源没有试不确定),并且确定Pack_url格式一定正确,找不到错误的原因。而使用.net 4.7.2就正常。
跟水友群交流后,他们也反映有这个问题,他们解决方法是,
1、删除bin,obj等文件夹,将图片属性里面生成操作改为资源。然后多试几次就好了。
2、将图片属性生成操作改为内容,然后复制到输出目录改为复制。
对于第一中方式,我试了2次后成功,过了会又报错了,玄学。
第二种方式100%会成功,不过会把图片
在wpf中,有时会遇到如下错误:
System.
Windows.
Markup.
XamlParseException:““在“System.
Windows.Baml2006.TypeConverter
MarkupExtension”上
提供值时引发了
异常。”,行号为“2509”,行位置为“47”。”
IO
Exception: 找不到资源“images/你的图片.png”。
这种原因,是因为图片作为资源引用,还是作为文件引用。
选择该图片,右键,找到“属性”菜单,在“先成操作中”选择“资源”即可!
解决方法:
xxx-》 图片属性-》生产操作改为
Resource。ImageSource 改为类似:
ImageSource="/你的程序集名称;component/
Resources/xxx.png";
Applications = Code + Markup: A Guide to the Microsoft® Windows® Presentation Foundation
By Charles Petzold
...............................................
Publisher: Microsoft Press ...
AcMgd.dll
均加载上,然后编写好代码以后点击Debug后出现以下提示:
System.
Windows.
Markup.
XamlParseException was unhandled
Message=Provide value on 'System.
Windows.
Markup.Stati