xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
xtd.forms
include
xtd
forms
status_bar_panel_click_event_args.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include "
status_bar_panel.hpp
"
6
#include <xtd/any>
7
#include <xtd/event_args>
8
#include <cstdint>
9
11
namespace
xtd
{
13
namespace
forms
{
25
class
status_bar_panel_click_event_args
:
public
xtd::event_args
{
26
public
:
28
status_bar_panel_click_event_args
(
const
status_bar_panel_click_event_args
&) =
default
;
29
status_bar_panel_click_event_args
& operator =(
const
status_bar_panel_click_event_args
&) =
default
;
31
33
37
explicit
status_bar_panel_click_event_args
(
const
xtd::forms::status_bar_panel
&
panel
) : panel_(
panel
) {}
41
status_bar_panel_click_event_args
(
const
xtd::forms::status_bar_panel
&
panel
,
intptr
handle
) : panel_(
panel
), handle_(
handle
) {}
43
45
49
const
xtd::forms::status_bar_panel
&
panel
() const noexcept {
return
panel_;}
50
53
intptr
handle
() const noexcept {
return
handle_;}
55
56
private
:
57
xtd::forms::status_bar_panel
panel_;
58
intptr
handle_ = 0;
59
};
60
}
61
}
xtd::event_args
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition
event_args.hpp:18
xtd::forms::status_bar_panel_click_event_args::handle
intptr handle() const noexcept
Gets internal handle.
Definition
status_bar_panel_click_event_args.hpp:53
xtd::forms::status_bar_panel_click_event_args::status_bar_panel_click_event_args
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.hpp:41
xtd::forms::status_bar_panel_click_event_args::status_bar_panel_click_event_args
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.hpp:37
xtd::forms::status_bar_panel_click_event_args::panel
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.hpp:49
xtd::forms::status_bar_panel
Represents a xtd::forms::status_bar panel.
Definition
status_bar_panel.hpp:45
xtd::intptr
std::intmax_t intptr
Represent a pointer or a handle.
Definition
intptr.hpp:23
xtd::forms
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition
texts.hpp:219
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
status_bar_panel.hpp
Contains xtd::forms::status_bar_panel container.
Generated on
for xtd by
Gammasoft
. All rights reserved.