<Window x:Class="MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="400"> <Window.Resources> <Style x:Key="xx" TargetType="Label"> <Setter Property="Opacity" Value=".5"/> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="Label"> <StackPanel Orientation="Horizontal"> <Image HorizontalAlignment="Left" Width="100" Source="Resources/FldrOpen.png"> </Image> <TextBlock Text="aa"> </TextBlock> </StackPanel> </ControlTemplate> </Setter.Value> </Setter> </Style> </Window.Resources> <Grid> <StackPanel Margin="10,10,10,10"> <Label Style="{StaticResource xx}" Content="Yes Yes" Background="Green" Height="30" Margin="0,0,31,0" /> </StackPanel> <ContentControl Content="ContentControl" HorizontalAlignment="Left" Margin="-455,223,0,0" VerticalAlignment="Top"/> </Grid> </Window>
<textblock text="aa"> </textblock>
<textblock text="aa" />
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)