我无法访问在app.xaml中创建的静态资源。 它是我的app.xaml代码
<Application.Resources>
<ResourceDictionary>
<Color x:Key="AppDefaultColor">#07bab7</Color>
<Color x:Key="PageDefaultColor">#f0f0f0</Color>
</ResourceDictionary>
</Application.Resources>
当我尝试在我的页面中使用它作为静态资源时,它会出错。 它是我用来从app.xaml
访问静态资源的页面代码<Label Text="Test" TextColor="{StaticResource AppDefaultColor}" />