Q&A

  • MouseMove Event 발생시 눌려져 있는 마우스 버튼을 알려면?
마우스가 움직일때

마우스 왼쪽버튼을 누르고 움직이는지 오른쪽버튼을 누르고 움직이지는

어떻게 알아낼 수 있나요?

1  COMMENTS
  • Profile
    바사기몬 2000.08.30 18:08
    샘플로 해본건데 응용해 보셔욤...



    procedure TForm1.FormMouseMove(Sender: TObject; Shift: TShiftState; X,

    Y: Integer);

    begin

    if ssLeft in Shift then Label1.Caption := 'Left Button.. '

    else if ssRight in Shift then Label1.Caption := 'Right Button.. '

    else Label1.Caption := '.. ';

    end;







    호야 wrote:

    > 마우스가 움직일때

    > 마우스 왼쪽버튼을 누르고 움직이는지 오른쪽버튼을 누르고 움직이지는

    > 어떻게 알아낼 수 있나요?