15 references to WheelClick
PresentationCore (3)
System\Windows\Input\Command\MouseActionConverter.cs (2)
67_ when mouseActionToken.Equals("WheelClick", StringComparison.OrdinalIgnoreCase) => MouseAction.WheelClick, 97MouseAction.WheelClick => "WheelClick",
System\Windows\Input\Command\MouseGesture.cs (1)
182MouseAction = MouseAction.WheelClick;
PresentationCore.Tests (12)
System\Windows\Input\Command\KeyGestureConverter.Tests.cs (1)
69yield return new object?[] { false, true, MouseAction.WheelClick, typeof(string) };
System\Windows\Input\Command\MouseGestureConverter.Tests.cs (8)
47yield return new object[] { true, true, new MouseGesture(MouseAction.WheelClick, ModifierKeys.Control | ModifierKeys.Windows), typeof(string) }; 63yield return new object?[] { false, true, new MouseGesture(MouseAction.WheelClick, ModifierKeys.Control | ModifierKeys.Windows), typeof(KeyGesture) }; 70yield return new object?[] { false, true, MouseAction.WheelClick, typeof(string) }; 98yield return new object?[] { new MouseGesture(MouseAction.WheelClick, ModifierKeys.Shift), null, CultureInfo.InvariantCulture, "Shift+WheelClick" }; 107yield return new object?[] { new MouseGesture(MouseAction.WheelClick, ModifierKeys.Shift), null, CultureInfo.InvariantCulture, "Shift +WheelClick" }; 163yield return new object?[] { "Windows+WheelClick", null, CultureInfo.InvariantCulture, new MouseGesture(MouseAction.WheelClick, ModifierKeys.Windows) }; 165yield return new object?[] { "Ctrl+Alt+Windows+WheelClick", null, new CultureInfo("de-DE"), new MouseGesture(MouseAction.WheelClick, ModifierKeys.Control | ModifierKeys.Windows | ModifierKeys.Alt) }; 197yield return new object?[] { new MouseGesture(MouseAction.WheelClick, ModifierKeys.Control), typeof(ModifierKeys) };
System\Windows\Input\MouseActionConverter.Tests.cs (3)
91yield return new object?[] { MouseAction.WheelClick, null, new CultureInfo("no-NO"), "WheelClick" }; 100yield return new object?[] { MouseAction.WheelClick, null, CultureInfo.InvariantCulture, " WHEELCLICK" }; 141yield return new object?[] { "WheelClick", null, new CultureInfo("no-NO"), MouseAction.WheelClick };