Handling MouseEvents
You can handle various Mouse actions by using the events specified in the Control class. The following listing shows how to handle a simple MouseUp Event: Listing – 2
using System; using System.Windows.Forms; using System.Drawing;
public class Mousedemo:Form {
public Mousedemo() {
this.MouseUp += new MouseEventHandler(OnMouseup);
}
public void OnMouseup(object sender,MouseEventArgs e) {
this.Text = "Current Position (" +e.X + " , " + e.Y +")";
}
public static void Main() {
Application.Run(new Mousedemo());
} }
Try out the above example and observe the result. Click, DoubleClick, MouseEnter, and MouseLeave events can be handled in a similar way.
|
No responses found. Be the first to respond and make money from revenue sharing program.
|