6

我希望ImageBrush在 XAML 中使用 将背景应用于Grid.

我给了画笔 ax:Key并想在我的网格中引用它。

可悲的是,它根本没有将图像作为背景。

<Window.Resources>
    <ImageBrush ImageSource="/MAQButtonTest;component/images/bird_text_bg.jpg" x:Key="BackgroundSponge" />
    <Style TargetType="TextBlock">
        <Setter Property="OverridesDefaultStyle" Value="True"/>
    </Style>
    <ControlTemplate TargetType="Button" x:Key="ButtonTemplate">
        <Grid Width="444" ShowGridLines="False" SnapsToDevicePixels="True" Background="{DynamicResource BackgroundSponge}">
            <Grid.RowDefinitions>
                <RowDefinition Height="51" />
                <RowDefinition Height="36" />
            </Grid.RowDefinitions>
            <Grid Grid.Row="0" Background="#286c97">

            </Grid>
            <Grid Grid.Row="1" Background="#5898c0">
                <ContentPresenter Grid.Row="0" />
            </Grid>
        </Grid>
    </ControlTemplate>
</Window.Resources>

我想我可能以错误的方式指代它,我已经尝试过DynamicResource并且StaticResource.

4

3 回答 3

11

我常用这个。如果图像作为资源添加到项目中,则相对像这样引用它们。

<ImageBrush x:Key="play" ImageSource="../Images/Buttons/Play.png" />

然后引用图像画笔:

<Border Background="{StaticResource play}"/>
于 2012-05-23T14:19:35.117 回答
3

我总是这样做;

<Grid>
   <Grid.Background>
      <ImageBrush ImageSource="/Resources/Images/BG_BlankOptimized.png"/>
   </Grid.Background>
</Grid>

或者,如果使用图像路径通过图像刷资源调用它,更像是保罗建议使用 StaticResource 来调用该样式。

于 2012-05-23T14:17:37.797 回答
2

在您的主网格中,您有内部子节点,它们覆盖了外部网格的所有可用空间,这就是您无法看到背景的原因。

 <Grid Width="444"
          Height="500" 
          Background="{DynamicResource BackgroundSponge}"
          ShowGridLines="False"
          SnapsToDevicePixels="True">
        <Grid.RowDefinitions>
            <RowDefinition Height="51" />
            <RowDefinition Height="36" />
        </Grid.RowDefinitions>
        <Grid Grid.Row="0" Background="#286c97"  Opacity="0.2" Margin="5"/>
        <Grid Grid.Row="1" Background="#5898c0" Opacity="0.2" Margin="5">
            <ContentPresenter Grid.Row="0" />
        </Grid>
    </Grid>

只有宽度还可以,但高度呢?如果您只是使高度变大,那么您的子项目就会显示出来。

或者更好地在内部儿童中留有余量。

边距=“5”

或者让内心的孩子像透明一样

不透明度=“0.2”

于 2012-05-23T15:10:36.500 回答