引用另一个xaml文件中定义的自定义资源

时间:2013-04-02 21:52:38

标签: wpf xaml resources staticresource

我正在尝试在一个xaml文件中创建一个新资源,并在另一个xaml文件中引用它。 即我定义

<Window.Resources>
    <ImageBrush x:Key="TileBrush" TileMode="Tile" ViewportUnits="Absolute" Viewport="0 0 32 32" ImageSource="MyImageButton.png" Opacity="0.3">
    </ImageBrush>
</Window.Resources>

尝试通过

在另一个xaml文件中使用它
<Grid>
    <Button Background="{StaticResource TileBrush}" Margin="5" Padding="5" FontWeight="Bold" FontSize="14">
        A Tiled Button
    </Button>
</Grid>

但是我收到错误“找不到静态资源引用'TileBrush'。” 我可以从同一个xaml文件引用该资源,但不知道如何从另一个文件中执行此操作。

2 个答案:

答案 0 :(得分:26)

在WPF中,资源引用用作树。每个控件都有资源,子控件可以访问父资源。全局应用程序资源字典位于App.xaml文件中。在此文件中,您可以将多个资源字典包含为合并字典。请参阅此代码示例:

<?xml version="1.0" encoding="utf-8"?>
<Application ...>
    <Application.Resources>
        <ResourceDictionary>
            <vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="View\SomeFileDictionary.xaml"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>

SomeFileDictionary.xaml位于我的项目结构的View文件夹中。并且看起来像这样:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:ViewModel="clr-namespace:Cepha.ViewModel"
                xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                ... >

<DataTemplate DataType="{x:Type ViewModel:SomeType}">
    <TextBox .../>
</DataTemplate>...

此文件(或App.xaml)中定义的每个字典键或数据模板都可以在项目的任何位置引用。希望这会有所帮助...

答案 1 :(得分:2)

您应该在app.xaml文件中定义它。这些资源在整个项目中共享