Browse Source

fix no border resize issue

pull/12257/head
Emmanuel Hansen 3 years ago
parent
commit
5ee76faabd
  1. 2
      src/Windows/Avalonia.Win32/WindowImpl.AppWndProc.cs
  2. 10
      src/Windows/Avalonia.Win32/WindowImpl.cs

2
src/Windows/Avalonia.Win32/WindowImpl.AppWndProc.cs

@ -59,7 +59,7 @@ namespace Avalonia.Win32
case WindowsMessage.WM_NCCALCSIZE:
{
if (ToInt32(wParam) == 1 && !HasFullDecorations || _isClientAreaExtended)
if (ToInt32(wParam) == 1 && _isClientAreaExtended)
{
return IntPtr.Zero;
}

10
src/Windows/Avalonia.Win32/WindowImpl.cs

@ -1340,14 +1340,12 @@ namespace Avalonia.Win32
if (!_isFullScreenActive)
{
var margin = newProperties.Decorations == SystemDecorations.BorderOnly ? 1 : 0;
var margins = new MARGINS
{
cyBottomHeight = margin,
cxRightWidth = margin,
cxLeftWidth = margin,
cyTopHeight = margin
cyBottomHeight = 0,
cxRightWidth = 0,
cxLeftWidth = 0,
cyTopHeight = 0
};
DwmExtendFrameIntoClientArea(_hwnd, ref margins);

Loading…
Cancel
Save