9 references to ClickEvent
PresentationFramework (9)
System\Windows\Controls\Primitives\ButtonBase.cs (3)
71
RoutedEventArgs newEvent = new RoutedEventArgs(ButtonBase.
ClickEvent
, this);
187
public event RoutedEventHandler Click { add { AddHandler(
ClickEvent
, value); } remove { RemoveHandler(
ClickEvent
, value); } }
System\Windows\Controls\StickyNote.cs (4)
199
button.AddHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
207
closeButton.AddHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
1305
closeButton.RemoveHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
1311
iconButton.RemoveHandler(ButtonBase.
ClickEvent
, new RoutedEventHandler(OnButtonClick));
System\Windows\Controls\ToolBar.cs (1)
82
EventManager.RegisterClassHandler(typeof(ToolBar), ButtonBase.
ClickEvent
, new RoutedEventHandler(_OnClick));
System\Windows\Documents\Hyperlink.cs (1)
463
public static readonly RoutedEvent ClickEvent = System.Windows.Controls.Primitives.ButtonBase.
ClickEvent
.AddOwner(typeof(Hyperlink));