xtd - Reference Guide  0.1.1
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
link_label_clicked_event_args.h
Go to the documentation of this file.
1 #pragma once
5 #include <cstdint>
6 #include <xtd/event_args.h>
7 #include "mouse_buttons.h"
8 #include "link.h"
9 
11 namespace xtd {
13  namespace forms {
15  class link_label;
17 
26  public:
28 
29  const xtd::forms::link& link() const;
30 
32 
33  bool visited() const;
34  void visited(bool value);
35 
36  private:
37  xtd::forms::link link_;
39  bool visited_ = false;
40  };
41  }
42 }
43 
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: event_args.h:18
Represents a Windows button control.
Definition: button.h:54
Contains xtd::event_args event args.
mouse_buttons
Specifies constants that define which mouse button was pressed. This enumeration has a flag attribute...
Definition: mouse_buttons.h:18
@ left
The left mouse button was pressed.
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 xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17