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.
Classes | Typedefs
forms

Definition

forms definitions.

Classes

class  xtd::forms::debug_form
 Represents a form that displays debug form. This class cannot be inherited. More...
 
class  xtd::forms::form
 Represents a window or dialog box that makes up an application's user interface. More...
 
class  xtd::forms::link_label_clicked_event_args
 Represents a Windows label control that can display hyperlinks. More...
 
class  xtd::forms::trace_form
 Represents a form that displays trace form. This class cannot be inherited. More...
 

Typedefs

using xtd::forms::link_label_clicked_event_handler = delegate< void(object &sender, link_label_clicked_event_args &e)>
 Represents the method that will handle the xtd::forms::link_label::link_clicked event of a xtd::forms::link_label. More...
 

Typedef Documentation

◆ link_label_clicked_event_handler

#include <xtd.forms/include/xtd/forms/link_label_clicked_event_handler.h>

Represents the method that will handle the xtd::forms::link_label::link_clicked event of a xtd::forms::link_label.

Parameters
senderThe source of the event.
eA xtd::forms::link_label_link_clicked_event_args that contains the event data.
Namespace
xtd::forms
Library
xtd.forms
Remarks
When you create a xtd::forms::link_label_link_clicked_event_handler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, until you remove the delegate.