<Window x:Class="ClassicControls.Transparency"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Background="White" Title="Transparency" Height="385" Width="450">
<StackPanel Margin="5">
<StackPanel.Background>
<ImageBrush ImageSource="c:\image.jpg" Opacity="0.7"/>
</StackPanel.Background>
</StackPanel>
</Window>
|