10 references to LeftDoubleClick
PresentationCore (3)
System\Windows\Input\Command\MouseActionConverter.cs (2)
68_ when mouseActionToken.Equals("LeftDoubleClick", StringComparison.OrdinalIgnoreCase) => MouseAction.LeftDoubleClick, 98MouseAction.LeftDoubleClick => "LeftDoubleClick",
System\Windows\Input\Command\MouseGesture.cs (1)
193MouseAction = MouseAction.LeftDoubleClick;
PresentationCore.Tests (7)
System\Windows\Input\Command\MouseGestureConverter.Tests.cs (4)
46yield return new object[] { true, true, new MouseGesture(MouseAction.LeftDoubleClick, ModifierKeys.Control | ModifierKeys.Windows | ModifierKeys.Alt), typeof(string) }; 99yield return new object?[] { new MouseGesture(MouseAction.LeftDoubleClick, ModifierKeys.Windows), null, CultureInfo.InvariantCulture, "Windows+LeftDoubleClick" }; 109yield return new object?[] { new MouseGesture(MouseAction.LeftDoubleClick, ModifierKeys.Windows), null, CultureInfo.InvariantCulture, "Windows+ LeftDoubleClick " }; 133yield return new object?[] { CultureInfo.InvariantCulture, MouseAction.LeftDoubleClick };
System\Windows\Input\MouseActionConverter.Tests.cs (3)
92yield return new object?[] { MouseAction.LeftDoubleClick, null, CultureInfo.InvariantCulture, "LeftDoubleClick" }; 102yield return new object?[] { MouseAction.LeftDoubleClick, null, CultureInfo.InvariantCulture, " leftdoubleclick " }; 142yield return new object?[] { "LeftDoubleClick", null, CultureInfo.InvariantCulture, MouseAction.LeftDoubleClick };