2012年11月13日火曜日

ウィンドウを透明にする


WindowクラスのAllowsTransparencyプロパティを True に、WindowStyleプロパティを None にします。


MainWindow.xaml

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        AllowsTransparency="True" WindowStyle="None" Background="Transparent">
    <Grid>
        <Ellipse Height="100" Width="100" Fill="Green" Opacity=".5"/>
    </Grid>
</Window>

0 件のコメント:

コメントを投稿