Mouse Event information : Mouse Event : GUI Windows Forms C# Examples


C# Examples » GUI Windows Forms » Mouse Event »

 

Mouse Event information









    
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());
    }

}
    
   
  
   



Output

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


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo GUI Windows Forms
» Mouse Event