WPF自定义的窗口,就是隐藏了Windows窗口的边框,怎样实现拖动呢
发布网友
发布时间:2022-04-21 04:13
我来回答
共1个回答
热心网友
时间:2023-11-05 11:06
方法解决:
给窗口根级grid设定maxwidth和maxheight为桌面工作区的高度和宽度,构造方法里加代码:
layoutroot.maxwidth
=
systemparameters.workarea.width;
layoutroot.maxheight
=
systemparameters.workarea.height;