原文:
WPF Windows背景透明其中的文字保持不透明
版权声明:本文为博主原创,未经允许不得转载。交流、源码资料加群:161154103 https://blog.csdn.net/mpegfour/article/details/78815791
实现效果如图:
实现代码:
<Window x:Class="Gvitech.Application.WPF.UI.FunFacility.WindowEquipmentRecord"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="WindowEquipmentRecord" Height="300" Width="600" WindowStyle="None" WindowState="Normal" AllowsTransparency="True" >
<Window.Background>
<SolidColorBrush Opacity="0.6" Color="#001f55"></SolidColorBrush>
</Window.Background>