私は WPF で独自のカスタム ウィンドウを設計しており、以前に WinForms で使用したサイズ変更機能を実装しようとしています。何らかの理由で、私の WndProc の戻り値が適切な結果を与えていません。
すべての WndProc メッセージと結果の NativeMethods クラスがあります。
public class NativeMethods
{
public const int WM_NCHITTEST = 0x84;
public const int HTCAPTION = 2;
public const int HTLEFT = 10;
public const int HTRIGHT = 11;
public const int HTTOP = 12;
public const int HTTOPLEFT = 13;
public const int HTTOPRIGHT = 14;
public const int HTBOTTOM = 15;
public const int HTBOTTOMLEFT = 16;
public const int HTBOTTOMRIGHT = 17;
}
そして、ここに私のウィンドウのコードビハインドがあります:
public partial class MainWindow : Window
{
const int GripSize = 16;
const int BorderSize = 7;
public MainWindow()
{
InitializeComponent();
}
protected override void OnSourceInitialized(EventArgs e)
{
base.OnSourceInitialized(e);
IntPtr windowHandle = new WindowInteropHelper(this).Handle;
HwndSource windowSource = HwndSource.FromHwnd(windowHandle);
windowSource.AddHook(WndProc);
}
private IntPtr WndProc(IntPtr hwnd, int msg,
IntPtr wParam, IntPtr lParam, ref bool handled)
{
if (msg == NativeMethods.WM_NCHITTEST)
{
int x = lParam.ToInt32() << 16 >> 16, y = lParam.ToInt32() >> 16;
Point pos = PointFromScreen(new Point(x, y));
if (pos.X > GripSize &&
pos.X < ActualWidth - GripSize &&
pos.Y >= ActualHeight - BorderSize)
{
return (IntPtr)NativeMethods.HTBOTTOM; // This doesn't work?
}
// Top, Left, Right, Corners, Etc.
}
return IntPtr.Zero;
}
}
カーソルが「サイズ変更下矢印」に変わり、サイズ変更機能が WinForms プロジェクトと同じように機能することを期待していました。ブレークポイントを設定しましたが、カーソルが予想される位置にあるときに HTBOTTOM リターンが発生します。XAML では、ResizeMode を CanResize に設定し、WindowStyle を None に設定しています。私は何を間違っていますか?