Windowsメッセージを処理する必要がありますが、複雑ではありません。
WM_WINDOWPOSCHANGINGメッセージを処理する必要があります。WPFでこれを行うには、定型コードを少し必要とします。実際のロジックはコードの2行だけです。
internal enum WM
{
WINDOWPOSCHANGING = 0x0046,
}
[StructLayout(LayoutKind.Sequential)]
internal struct WINDOWPOS
{
public IntPtr hwnd;
public IntPtr hwndInsertAfter;
public int x;
public int y;
public int cx;
public int cy;
public int flags;
}
private void Window_SourceInitialized(object sender, EventArgs ea)
{
HwndSource hwndSource = (HwndSource)HwndSource.FromVisual((Window)sender);
hwndSource.AddHook(DragHook);
}
private static IntPtr DragHook(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handeled)
{
switch ((WM)msg)
{
case WM.WINDOWPOSCHANGING:
{
WINDOWPOS pos = (WINDOWPOS)Marshal.PtrToStructure(lParam, typeof(WINDOWPOS));
if ((pos.flags & (int)SWP.NOMOVE) != 0)
{
return IntPtr.Zero;
}
Window wnd = (Window)HwndSource.FromHwnd(hwnd).RootVisual;
if (wnd == null)
{
return IntPtr.Zero;
}
bool changedPos = false;
// ***********************
// Here you check the values inside the pos structure
// if you want to override them just change the pos
// structure and set changedPos to true
// ***********************
// this is a simplified version that doesn't work in high-dpi settings
// pos.cx and pos.cy are in "device pixels" and MinWidth and MinHeight
// are in "WPF pixels" (WPF pixels are always 1/96 of an inch - if your
// system is configured correctly).
if(pos.cx < MinWidth) { pos.cx = MinWidth; changedPos = true; }
if(pos.cy < MinHeight) { pos.cy = MinHeight; changedPos = true; }
// ***********************
// end of "logic"
// ***********************
if (!changedPos)
{
return IntPtr.Zero;
}
Marshal.StructureToPtr(pos, lParam, true);
handeled = true;
}
break;
}
return IntPtr.Zero;
}
出典
2009-11-12 08:42:57
Nir
ありがとうございました!これはまさに私が必要としていたものです。 0x0024(イベントを最大化する)を監視していたので、私はすでにソースを接続していたので、スイッチにケースを追加するだけでした。再度、感謝します! –
ありがとうございます。それはそれを適切かつ適切に分類した。 – Dennis
MinHeightまたはMinWidthのいずれかを超過しようとすると、「黒い」画面が点滅するのを防ぐ方法はありますか?フリッカーは悪いです。 –