WPF 无边框窗体
2020-11-22 22:42
标签:style tar color rgb c line 第一步:去掉那些最大化最小化和关闭 代码如下: WindowStyle="None" 第二步:去掉那边框 代码如下: AllowsTransparency="True" 第三步:拖动窗体 方法:给窗体设置MouseLeftButtonDown事件 代码如下: (1)前台代码: MouseLeftButtonDown="Border_MouseLeftButtonDown_1" (2)后台代码: private void Border_MouseLeftButtonDown_1(object
sender, MouseButtonEventArgs e) WPF 无边框窗体,搜素材,soscw.com WPF 无边框窗体 标签:style tar color rgb c line 原文地址:http://blog.csdn.net/coolfeiweb/article/details/25139979
{
this.DragMove();
}