20

我正在尝试在一个 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 文件中引用资源,但不知道如何从另一个文件中引用。

4

2 回答 2

28

在 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)中定义的每个字典键或数据模板都可以在项目的任何位置引用。希望这可以帮助...

于 2013-04-02T22:11:23.817 回答
0

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

于 2013-04-02T22:09:08.997 回答