3

当我将样式中的画笔用作静态资源时,我遇到了在运行时无法解析 SolidColorBrush(在 App.xaml 中定义)的情况。

在设计时(使用 Visual Studio 2010)找到了画笔,因为当我更改画笔的颜色时,带有样式的 UIElement 会使用新颜色进行更新。

在运行时引发 XAMLParseException,即找不到资源“颜色”。

这是正常行为吗?我认为解决静态资源,从 UIElements 到应用程序资源,应用程序资源是为应用程序的 UIElements 定义默认值(颜色、字体等)的好地方。

应用程序.xaml

<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
         x:Class="SilverlightApplication1.App"
         >
<Application.Resources>
    <ResourceDictionary>
        <SolidColorBrush Color="Green" x:Key="color"/>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="Styles.xaml"/>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

样式.xaml

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

<Style TargetType="Border">
    <Setter Property="BorderBrush" Value="{StaticResource color}" />
    <Setter Property="BorderThickness" Value="1" />
</Style>

主文件

<UserControl x:Class="SilverlightApplication1.MainPage"
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"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">

<Grid x:Name="LayoutRoot" Background="White">
    <Border Height="100" HorizontalAlignment="Left" Margin="130,146,0,0" Name="border1" VerticalAlignment="Top" Width="200" />
</Grid>

4

2 回答 2

2

我重构了资源定义并将 SolidColorBrush“颜色”放在 ResourceDictionary“General.xaml”中

我在 ResourceDictionary“Styles.xaml”中合并了 ResourceDictionary“General.xaml”。现在它可以正常工作了。我认为这是使用资源的方式。

通用.xaml

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

  <SolidColorBrush Color="Green" x:Key="color"/>
</ResourceDictionary>

样式.xaml

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

  <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="General.xaml"/>
  </ResourceDictionary.MergedDictionaries>

  <Style TargetType="Border">
    <Setter Property="BorderBrush" Value="{StaticResource color}" />
    <Setter Property="BorderThickness" Value="1" />
  </Style>
</ResourceDictionary>
于 2010-09-01T08:19:34.270 回答
2

我最近通过将所有样式放入 XAML 资源字典并在运行时合并它们,成功地规避了此类问题。在 XAML 中合并这些相同的字典并不能解决问题。

应用程序.xaml.cs

public App()
{
    if (DesignerProperties.IsInDesignTool == false)
    {
        this.Startup += this.Application_Startup;
    }
}

private void Application_Startup(object sender, StartupEventArgs e)
{           
    System.Uri uri = new System.Uri("/MRW.UI;component/Resources/Library.xaml", UriKind.RelativeOrAbsolute);

    System.Windows.ResourceDictionary dictionary = new System.Windows.ResourceDictionary(); 
dictionary.Source = uri;
    App.Current.Resources.MergedDictionaries.Add(dictionary);
}
于 2012-05-03T19:22:54.433 回答