-1

为了实现阴影效果,我的窗口比它的主要内容略大,周围有一个透明的“边框”。我很好奇是否有可能使这个不可见的边框(图像中的彩色部分)仅点击并防止主要内容被点击。

在此处输入图像描述

该线程解释了如何使整个窗口点击: 使 WPF 窗口点击,但不是其控件

有什么方法可以使这种方法适应我打算实现的目标吗?

4

1 回答 1

0

只有具有完全透明背景的窗口才能真正点击通过。例如,对于半透明窗口,您可以在单击阴影时自己最小化窗口,例如:

private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    if (e.OriginalSource == outer)
        WindowState = WindowState.Minimized;
}

XAML:

<Window x:Class="WpfApp1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        mc:Ignorable="d"
        Title="MainWindow" Height="300" Width="300"
        AllowsTransparency="True" WindowStyle="None">
    <Window.Background>
        <SolidColorBrush Color="Red" Opacity="0.3" />
    </Window.Background>
    <Grid x:Name="outer" Background="Transparent" MouseLeftButtonDown="Grid_MouseLeftButtonDown">
        <Grid Background="Silver" Margin="10">
            <TextBlock>GUI</TextBlock>
        </Grid>
    </Grid>
</Window> 
于 2018-08-13T13:26:47.930 回答