如何检测TControl的右拖动结束?

时间:2010-06-24 06:53:06

标签: delphi event-handling mouseevent drag

编辑:VCL在右拖动方面没有问题,下面的示例程序运行完美。鼠标手势实用程序会导致问题。 (也许它会挂钩并拦截WM_RBUTTONUP事件......)

我想检测右侧拖动控件的 end

对于左拖动,我可以使用MouseUp事件,但在右键拖动后不会发生。

在下面的测试程序中(在表单的右侧放置备忘录并拖动表单), 我想在右键拖动后重置鼠标光标。

我怎样才能做到这一点? (WM_RBUTTONUP没有来。)

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Memo1: TMemo;
    procedure FormMouseDown(Sender: TObject; Button: TMouseButton; Shift:
        TShiftState; X, Y: Integer);
    procedure FormMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
    procedure FormMouseUp(Sender: TObject; Button: TMouseButton; Shift:
        TShiftState; X, Y: Integer);
    procedure WMRButtonUp(var Message: TWMRButtonUp); message WM_RBUTTONUP;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

function ShiftStateToStr(Shift: TShiftState): string;
begin
  if ssShift in Shift then
    Result := Result + 'S-';
  if ssCtrl in Shift then
    Result := Result + 'C-';
  if ssAlt in Shift then
    Result := Result + 'A-';
  if ssDouble in Shift then
    Result := Result + 'D-';
  if ssLeft in Shift then
    Result := Result + 'L';
  if ssRight in Shift then
    Result := Result + 'R';
  if ssMiddle in Shift then
    Result := Result + 'M';
end;

function MouseButtonToStr(Btn: TMouseButton): string;
begin
  if Btn = mbLeft then
    Result := 'Left'
  else if Btn = mbRight then
    Result := 'Right'
  else if Btn = mbMiddle then
    Result := 'Middle';
end;


procedure TForm1.FormMouseDown(Sender: TObject; Button: TMouseButton; Shift:
    TShiftState; X, Y: Integer);
begin
  SetCapture(Handle);
  Memo1.Lines.Add(Format('Down(Btn=%s, Shift=[%s])', [MouseButtonToStr(Button), ShiftStateToStr(Shift)]));

  if Button = mbLeft then
    Screen.Cursor := crDrag
  else if Button = mbRight then
    Screen.Cursor := crSize;
end;

procedure TForm1.FormMouseMove(Sender: TObject; Shift: TShiftState; X, Y:
    Integer);
begin
  Memo1.Lines.Add(Format('Move(Shift=[%s])', [ShiftStateToStr(Shift)]));
end;

procedure TForm1.FormMouseUp(Sender: TObject; Button: TMouseButton; Shift:
    TShiftState; X, Y: Integer);
begin
  ReleaseCapture;
  Memo1.Lines.Add(Format('Up(Btn=%s, Shift=[%s])', [MouseButtonToStr(Button), ShiftStateToStr(Shift)]));

  Screen.Cursor := crDefault;
end;

procedure TForm1.WMRButtonUp(var Message: TWMRButtonUp);
begin
  Memo1.Lines.Add('WMRbuttonUp');
  inherited;
end;

end.

2 个答案:

答案 0 :(得分:1)

我用D2007尝试了你的测试程序。一切都像预期的那样。我释放鼠标右键时会触发FormMouseUpWMRButtonUp

你可以在另一台机器上测试吗?我猜你在Delphi中安装了一些“坏”的东西,或者你的系统上有一些钩子。但是你的来源是正确的,应该可行。

答案 1 :(得分:0)

您的问题是您需要直接检测鼠标事件,而不是使用Delphi的解释。