欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

WPF中的无边框透明可缩放窗体----一行代码解决

程序员文章站 2022-07-14 12:06:26
...

 

<Window x:Class="iconfontDemo.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"
        xmlns:local="clr-namespace:iconfontDemo"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800" WindowStyle="None" 
        AllowsTransparency="True"
        Background="Transparent"
        >
    <WindowChrome.WindowChrome>
        <WindowChrome   ResizeBorderThickness="4"/>
    </WindowChrome.WindowChrome>
    <StackPanel Background="White">
        
    </StackPanel>
</Window>

ResizeBorderThickness  只需要设置这一个属性就好了。

相关标签: wpf C#