xtd 0.2.0
status_bar_panel_click_event_args.h
Go to the documentation of this file.
1 #pragma once
5 #include "status_bar_panel.h"
6 #include <xtd/any>
7 #include <xtd/event_args>
8 #include <cstdint>
9 
11 namespace xtd {
13  namespace forms {
24  public:
29 
31 
41 
43 
47  const xtd::forms::status_bar_panel& panel() const noexcept {return panel_;}
48 
51  intptr handle() const noexcept {return handle_;}
53 
54  private:
56  intptr handle_ = 0;
57  };
58  }
59 }
const xtd::forms::status_bar_panel & panel() const noexcept
Gets the xtd::forms::status_bar_panel that was clicked.
Definition: status_bar_panel_click_event_args.h:47
intmax_t intptr
Represent a pointer or a handle.
Definition: types.h:151
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
status_bar_panel_click_event_args(const xtd::forms::status_bar_panel &panel)
Initializes a new instance of the xtd::forms::status_bar_panel_click_event_args class.
Definition: status_bar_panel_click_event_args.h:35
Used to group collections of controls.
Definition: panel.h:30
Provides data for the xtd::forms::tool_bar::button_click event.
Definition: status_bar_panel_click_event_args.h:23
intptr handle() const noexcept
Gets internal handle.
Definition: status_bar_panel_click_event_args.h:51
Contains xtd::forms::status_bar_panel container.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
status_bar_panel_click_event_args(const xtd::forms::status_bar_panel &panel, intptr handle)
Initializes a new instance of the xtd::forms::status_bar_panel_click_event_args class.
Definition: status_bar_panel_click_event_args.h:39
Represents a xtd::forms::status_bar panel.
Definition: status_bar_panel.h:43