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