xtd 0.2.0
link_label_clicked_event_args.h
Go to the documentation of this file.
1 #pragma once
5 #include "link.h"
6 #include "mouse_buttons.h"
7 #include <xtd/event_args>
8 #include <cstdint>
9 
11 namespace xtd {
13  namespace forms {
15  class link_label;
17 
28  public:
30 
37 
39 
43  const xtd::forms::link& link() const noexcept;
44 
47  xtd::forms::mouse_buttons button() const noexcept;
48 
51  bool visited() const noexcept;
54  void visited(bool value);
56 
57  private:
58  xtd::forms::link link_;
60  bool visited_ = false;
61  };
62  }
63 }
64 
mouse_buttons
Specifies constants that define which mouse button was pressed. This enumeration has a flag attribute...
Definition: mouse_buttons.h:20
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: event_args.h:18
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
xtd::forms::style_sheets::control link_label
The link label data allows you to specify the box of a link label control.
Definition: link_label.h:23
Contains xtd::forms::mouse_buttons enum class.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
The left mouse button was pressed.
Represents a Windows button control.
Definition: button.h:47