9 references to ClickEvent
PresentationFramework (9)
System\Windows\Controls\Primitives\ButtonBase.cs (3)
60
RoutedEventArgs newEvent = new RoutedEventArgs(ButtonBase.
ClickEvent
, this);
176
public event RoutedEventHandler Click { add { AddHandler(
ClickEvent
, value); } remove { RemoveHandler(
ClickEvent
, value); } }
System\Windows\Controls\StickyNote.cs (4)
183
button.AddHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
191
closeButton.AddHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
1289
closeButton.RemoveHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
1295
iconButton.RemoveHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
System\Windows\Controls\ToolBar.cs (1)
73
EventManager.RegisterClassHandler(typeof(ToolBar), ButtonBase.
ClickEvent
, new RoutedEventHandler(_OnClick));
System\Windows\Documents\Hyperlink.cs (1)
457
public static readonly RoutedEvent ClickEvent = System.Windows.Controls.Primitives.ButtonBase.
ClickEvent
.AddOwner(typeof(Hyperlink));