8 references to MousePresent
Microsoft.VisualBasic.Forms (2)
Microsoft\VisualBasic\Devices\Mouse.vb (2)
29If SystemInformation.MousePresent Then 44If SystemInformation.MousePresent Then
Microsoft.VisualBasic.Tests (4)
Microsoft\VisualBasic\Devices\MouseTests.cs (4)
10public static bool NoMousePresent => !SystemInformation.MousePresent; 14public static bool MousePresentAndMouseWheelPresent => SystemInformation.MousePresent && SystemInformation.MouseWheelPresent; 16[Fact(Skip = "Condition not met", SkipType = typeof(SystemInformation), SkipUnless = nameof(SystemInformation.MousePresent))] 34[Fact(Skip = "Condition not met", SkipType = typeof(SystemInformation), SkipUnless = nameof(SystemInformation.MousePresent))]
System.Windows.Forms.Tests (2)
System\Windows\Forms\SystemInformationTests.cs (2)
559Assert.Equal(SystemInformation.MousePresent, SystemInformation.MousePresent);