9 references to ClickEvent
PresentationFramework (9)
System\Windows\Controls\Primitives\ButtonBase.cs (3)
59
RoutedEventArgs newEvent = new RoutedEventArgs(ButtonBase.
ClickEvent
, this);
175
public event RoutedEventHandler Click { add { AddHandler(
ClickEvent
, value); } remove { RemoveHandler(
ClickEvent
, value); } }
System\Windows\Controls\StickyNote.cs (4)
169
button?.AddHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
174
closeButton?.AddHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
1264
closeButton?.RemoveHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
1267
iconButton?.RemoveHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
System\Windows\Controls\ToolBar.cs (1)
72
EventManager.RegisterClassHandler(typeof(ToolBar), ButtonBase.
ClickEvent
, new RoutedEventHandler(_OnClick));
System\Windows\Documents\Hyperlink.cs (1)
456
public static readonly RoutedEvent ClickEvent = System.Windows.Controls.Primitives.ButtonBase.
ClickEvent
.AddOwner(typeof(Hyperlink));