1

TI 在让我的窗口透明时遇到了一些麻烦。

窗口定义如下:

<Window x:Class="HKC.Desktop.Views.UserInterfaces.RemoteKeypad"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Closing="Window_Close"
        KeyDown="RemoteKeypad_KeyDown"
        KeyUp="RemoteKeypad_KeyUp" MouseDown="OnMouseDown_Event"
        Title="Title"  Width="325" Height="370"
        ResizeMode="NoResize" WindowStartupLocation="CenterScreen"  WindowStyle="None" AllowsTransparency="True" Background="Transparent">

然后我定义了一个边框,为窗口提供一个弯曲的边缘,里面有一个网格用于布局目的:

<Border CornerRadius="20" Background="Transparent" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
     <Border.Effect>
          <DropShadowEffect BlurRadius="6" ShadowDepth="3" Color="#484948" />
     </Border.Effect>
     <Grid Background="Transparent" VerticalAlignment="Stretch">
          ....
     </Grid>
</Border>
</Window>

由于某种原因,我第一次打开窗口背景不透明

在此处输入图像描述

但是,如果我在窗口之外单击,然后返回它,透明度将按预期工作。

4

1 回答 1

0

原来问题出在用于向元素添加投影的外部工具。

于 2013-04-10T16:19:35.287 回答