14 references to MouseLeftButtonUpEvent
PresentationCore (10)
System\Windows\Generated\ContentElement.cs (3)
953
public static readonly RoutedEvent MouseLeftButtonUpEvent = UIElement.
MouseLeftButtonUpEvent
.AddOwner(_typeofThis);
960
add { AddHandler(UIElement.
MouseLeftButtonUpEvent
, value, false); }
961
remove { RemoveHandler(UIElement.
MouseLeftButtonUpEvent
, value); }
System\Windows\Generated\UIElement.cs (3)
747
EventManager.RegisterClassHandler(type, UIElement.
MouseLeftButtonUpEvent
, new MouseButtonEventHandler(UIElement.OnMouseLeftButtonUpThunk), false);
2913
add { AddHandler(UIElement.
MouseLeftButtonUpEvent
, value, false); }
2914
remove { RemoveHandler(UIElement.
MouseLeftButtonUpEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
674
public static readonly RoutedEvent MouseLeftButtonUpEvent = UIElement.
MouseLeftButtonUpEvent
.AddOwner(_typeofThis);
681
add { AddHandler(UIElement.
MouseLeftButtonUpEvent
, value, false); }
682
remove { RemoveHandler(UIElement.
MouseLeftButtonUpEvent
, value); }
System\Windows\UIElement.cs (1)
2203
newEvent = UIElement.
MouseLeftButtonUpEvent
;
PresentationFramework (3)
System\Windows\Controls\Primitives\CalendarItem.cs (2)
977
dayCell.AddHandler(CalendarDayButton.
MouseLeftButtonUpEvent
, new MouseButtonEventHandler(Cell_MouseLeftButtonUp), true);
1003
monthCell.AddHandler(CalendarButton.
MouseLeftButtonUpEvent
, new MouseButtonEventHandler(Month_MouseLeftButtonUp), true);
System\Windows\Documents\Hyperlink.cs (1)
932
SetUpEventHandler(element, UIElement.
MouseLeftButtonUpEvent
, new MouseButtonEventHandler(OnMouseLeftButtonUp)); //can initiate navigation
PresentationUI (1)
MS\Internal\Documents\Application\ZoomComboBox.cs (1)
510
AddHandler(ComboBox.
MouseLeftButtonUpEvent
, new RoutedEventHandler(OnMouseLeftButtonUp), true);