xtd 0.2.0
mouse_event_handler.h
Go to the documentation of this file.
1 #pragma once
5 #include "mouse_event_args.h"
6 #include <xtd/event_handler>
7 
9 namespace xtd {
11  namespace forms {
22  using mouse_event_handler = delegate<void(object& sender, const mouse_event_args& e)>;
23  }
24 }
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Contains xtd::forms::mouse_event_args event args.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
delegate< void(object &sender, const mouse_event_args &e)> mouse_event_handler
Represents the method that will handle the MouseDown, MouseUp, or MouseMove event of a form...
Definition: mouse_event_handler.h:22