VB.Net by API/System.Windows.Forms/SystemInformation — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 12:52, 26 мая 2010
Содержание
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