无论如何都要控制你可以移动表格的位置吗?
因此,如果我移动一个表格,它只能在垂直轴上移动,当我尝试水平移动时,没有任何反应。
我不想要像changechanged或者移动事件这样的错误实现并将其弹回内联。我没有办法使用类似WndProc覆盖的东西,但搜索了一段时间后,我找不到任何东西。请帮忙
答案 0 :(得分:3)
例如:
using System.Runtime.InteropServices;
protected override void WndProc(ref Message m)
{
if (m.Msg == 0x216) // WM_MOVING = 0x216
{
Rectangle rect =
(Rectangle) Marshal.PtrToStructure(m.LParam, typeof (Rectangle));
if (rect.Left < 100)
{
// compensates for right side drift
rect.Width = rect.Width + (100 - rect.Left);
// force left side to 100
rect.X = 100;
Marshal.StructureToPtr(rect, m.LParam, true);
}
}
base.WndProc(ref m);
}
以上代码设置最小左手位置为100。
没有必要重新创建RECT结构,就像driis那样,.NET native Rectangle工作正常。但是,您必须通过X属性设置位置,因为Left是Get only属性。
答案 1 :(得分:2)
您很可能想要覆盖WndProc并处理WM_MOVING消息。 According to MSDN:
WM_MOVING消息被发送到 用户正在移动的窗口。通过 处理这条消息, 应用程序可以监视位置 拖动矩形,如果需要, 改变立场。
这是一种方法,但是,您显然需要根据自己的需要进行调整:
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace VerticalMovingForm
{
public partial class Form1 : Form
{
private const int WM_MOVING = 0x0216;
private readonly int positionX;
private readonly int positionR;
public Form1()
{
Left = 400;
Width = 500;
positionX = Left;
positionR = Left + Width;
}
protected override void WndProc(ref Message m)
{
if (m.Msg == WM_MOVING)
{
var r = (RECT)Marshal.PtrToStructure(m.LParam, typeof(RECT));
r.Left = positionX;
r.Right = positionR;
Marshal.StructureToPtr(r, m.LParam, false);
}
base.WndProc(ref m);
}
[StructLayout(LayoutKind.Sequential)]
private struct RECT
{
public int Left;
public int Top;
public int Right;
public int Bottom;
}
}
}
答案 2 :(得分:1)
VB.NET版本:
Protected Overloads Overrides Sub WndProc(ByRef m As Message)
If m.Msg = &H216 Then
' WM_MOVING = 0x216
Dim rect As Rectangle = DirectCast(Marshal.PtrToStructure(m.LParam, GetType(Rectangle)), Rectangle)
If rect.Left < 100 Then
' compensates for right side drift
rect.Width = rect.Width + (100 - rect.Left)
' force left side to 100
rect.X = 100
Marshal.StructureToPtr(rect, m.LParam, True)
End If
End If
MyBase.WndProc(m)
End Sub