我正在更新项目中的 WPF。当我收到它时,这是指定基本窗口的方式:
<Window x:Class="SomeProject.ButtonForm"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SomeProject"
Title="ButtonForm" Height="647" Width="379" WindowStyle="None" ResizeMode="CanResizeWithGrip"
SnapsToDevicePixels="True" ShowInTaskbar="False" WindowStartupLocation="CenterScreen"
SizeChanged="Resized" Closing="Window_Closing" AllowsTransparency="True" >
一些主要的事情是 that WindowStyle
is None
, ResizeMode
isCanResizeWithGrip
和AllowsTransparency
is True
。
我想做的是让这个窗口在没有夹点的情况下从所有四个边缘调整大小。有没有办法直接在标记中执行此操作?我见过一些实现这一点的项目,但它们涉及整个单独的文件和复杂的代码隐藏。当然还有更简单的方法。