VB.Net by API/System.Windows.Forms/SystemInformation

Материал из VB Эксперт
Перейти к: навигация, поиск

SystemInformation.DoubleClickSize

  

imports System.Windows.Forms
Public Class Tester
    Public Shared Sub Main
                       Console.WriteLine(SystemInformation.DoubleClickSize.ToString())
                       Console.WriteLine(SystemInformation.DoubleClickTime.ToString())
                       Console.WriteLine(SystemInformation.MouseButtons.ToString())
                       Console.WriteLine(SystemInformation.MouseButtonsSwapped.ToString())
     End Sub
End Class


SystemInformation.DoubleClickTime

  

imports System.Windows.Forms
Public Class Tester
    Public Shared Sub Main
                       Console.WriteLine(SystemInformation.DoubleClickSize.ToString())
                       Console.WriteLine(SystemInformation.DoubleClickTime.ToString())
                       Console.WriteLine(SystemInformation.MouseButtons.ToString())
                       Console.WriteLine(SystemInformation.MouseButtonsSwapped.ToString())
     End Sub
End Class


SystemInformation.MouseButtons

  

imports System.Windows.Forms
Public Class Tester
    Public Shared Sub Main
                       Console.WriteLine(SystemInformation.DoubleClickSize.ToString())
                       Console.WriteLine(SystemInformation.DoubleClickTime.ToString())
                       Console.WriteLine(SystemInformation.MouseButtons.ToString())
                       Console.WriteLine(SystemInformation.MouseButtonsSwapped.ToString())
     End Sub
End Class


SystemInformation.MouseButtonsSwapped

  
imports System.Windows.Forms
Public Class Tester
    Public Shared Sub Main
                       Console.WriteLine(SystemInformation.DoubleClickSize.ToString())
                       Console.WriteLine(SystemInformation.DoubleClickTime.ToString())
                       Console.WriteLine(SystemInformation.MouseButtons.ToString())
                       Console.WriteLine(SystemInformation.MouseButtonsSwapped.ToString())
     End Sub
End Class


SystemInformation.PrimaryMonitorMaximizedWindowSize

  
 
public class Test
   public Shared Sub Main
        Console.WriteLine(System.Windows.Forms.SystemInformation.PrimaryMonitorMaximizedWindowSize)
   End Sub
End class