0

我想要一个形状像图像的 WPF 窗口。所以基本上我有一个包含透明度的图像,在透明的地方我只想通过窗口看到我的桌面。在不透明的地方我想看到我的形象。与此处所做的类似,但以一种简单易懂的方式(在我链接的示例中,有很多 XAML,我一个字都不懂)。

4

1 回答 1

1

您在该示例中看到的大部分 XAML 与仅显示仅显示图像的窗口无关。其余的基本上是处理最小化/最大化/关闭按钮。

为了让你开始,下面是你真正需要显示一个只有你的图像的窗口。然后,您可以从这里开始并根据需要添加按钮和内容,使用文章中的示例 XAML 来引导您。

<Window x:Class="CSWPFIrregularShapeWindow.PictureBasedWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="PictureBasedWindow" Height="300" Width="300" Background="Transparent" 
        WindowStyle="None" AllowsTransparency="True" >    
    <Grid>
    <Image Height="250" Name="test" Source="/CSWPFIrregularShapeWindow;component/Images/transparentPic.png" 
        Stretch="Fill" />
    </Grid>
</Window>
于 2013-06-30T15:50:41.453 回答