Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (243.52 KB, 12 trang )
4/14/2009 Lập trình môi trường windows 29
MouseEventArgs
Lớp MouseEventArgs có 5 thuộc tính read-only
MouseEventArgs Properties
Type Property Accessibility Description
Int X get The horizontal position of the
mouse
Int Y get The vertical position of the
mouse
MouseButtons Button get The muose button or buttons
Int Clicks get Returns 2 for a double-click
int Delta get Mouse wheel movement
4/14/2009 Lập trình môi trường windows 30
Thuộc tính Button
MouseButtons Enumeration
Member Value
None 0x00000000
Left 0x00100000
Right 0x00200000
Middle 0x00400000
XButton1 0x00800000
XButton2 0x01000000
(mea.Button == MouseButtons.Right)
Ví dụ Test Mouse Button
4/14/2009
Lập trình môi trường windows
31
protected override void OnMouseClick(MouseEventArgs mea)
{
base.OnMouseClick(mea);
if (mea.Button == MouseButtons.Left)