Mouse Event information : Mouse Event « GUI Windows Forms « C# / CSharp Tutorial






using System;
using System.Drawing;
using System.Windows.Forms;

public class MainClass{
  static void Main() 
  {
    Console.WriteLine("DoubleClickSize"+ SystemInformation.DoubleClickSize.ToString());
    Console.WriteLine("DoubleClickTime"+SystemInformation.DoubleClickTime.ToString());
    Console.WriteLine("MouseButtons"+SystemInformation.MouseButtons.ToString());
    Console.WriteLine("MouseButtonsSwapped"+SystemInformation.MouseButtonsSwapped.ToString());
    Console.WriteLine("MousePresent"+SystemInformation.MousePresent.ToString());
    Console.WriteLine("MouseWheelPresent"+SystemInformation.MouseWheelPresent.ToString());
    Console.WriteLine("MouseWheelScrollLines"+SystemInformation.MouseWheelScrollLines.ToString());
    Console.WriteLine("NativeMouseWheelSupport"+SystemInformation.NativeMouseWheelSupport.ToString());
  }

}
DoubleClickSize{Width=4, Height=4}
DoubleClickTime500
MouseButtons5
MouseButtonsSwappedFalse
MousePresentTrue
MouseWheelPresentTrue
MouseWheelScrollLines3
NativeMouseWheelSupportTrue








23.62.Mouse Event
23.62.1.Mouse Event information
23.62.2.Mouse PropertiesMouse Properties
23.62.3.Mouse event handlersMouse event handlers
23.62.4.Mouse Enter / Hover / LeaveMouse Enter / Hover / Leave
23.62.5.Mouse Button Left clicked