【发布时间】:2021-06-08 13:09:50
【问题描述】:
我关注了https://docs.microsoft.com/en-us/xamarin/xamarin-forms/xaml/resource-dictionaries#stand-alone-resource-dictionaries,但我得到了错误。
XFC0124 找不到资源“ResourceDictionary1.xaml”。
我的代码是
ResourceDictionary1.xaml(已删除代码隐藏)编译选项:嵌入资源
<?xml version="1.0" encoding="UTF-8" ?>
<ResourceDictionary xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<x:String x:Key="test">
test string
</x:String>
</ResourceDictionary>
ContentPage1.xaml
<ContentPage.Resources>
<ResourceDictionary Source="ResourceDictionary1.xaml"/>
</ContentPage.Resources>
【问题讨论】:
标签: xaml xamarin.forms resourcedictionary