码迷,mamicode.com
首页 > Windows程序 > 详细

wpf 父控件透明子控件不透明

时间:2015-06-25 20:53:17      阅读:1419      评论:0      收藏:0      [点我收藏+]

标签:

在wpf开发中遇到子控件会继承父类控件属性的问题,

例如:

<StackPanel  Orientation="Horizontal" Grid.Row="1" Background="Black" Opacity="0.3">
                                            <Label Content="{Binding Id}"  Foreground="White"  VerticalAlignment="Center"></Label>
                                            <Label Content="{Binding Name}" Foreground="White" VerticalAlignment="Center"></Label>
                                        </StackPanel>

此时两个Label都会继承stackPanel的Opacity属性,如果想要不继承透明属性,这时候需要用到笔刷,代码如下:

<SolidColorBrush Color="Black" Opacity=".3" x:Key="OpacityBrush"/>

<StackPanel  Orientation="Horizontal" Grid.Row="1" Background="{StaticResource OpacityBrush}">
                                            <Label Content="{Binding Id}"  Foreground="White"  VerticalAlignment="Center"></Label>
                                            <Label Content="{Binding Name}" Foreground="White" VerticalAlignment="Center"></Label>
                                        </StackPanel>

 

wpf 父控件透明子控件不透明

标签:

原文地址:http://www.cnblogs.com/smdm/p/4600690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!