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.
form_closed_event_args.h
Go to the documentation of this file.
1 #pragma once
5 
6 #include <xtd/event_args.h>
7 #include "close_reason.h"
8 
10 namespace xtd {
12  namespace forms {
20  public:
26 
31 
35  forms::close_reason close_reason() const {return close_reason_;}
36 
37  private:
39  };
40  }
41 }
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: event_args.h:18
Provides data for the form_closed event.
Definition: form_closed_event_args.h:19
form_closed_event_args()=default
Initializes a new instance of the form_closed_event_args class.
forms::close_reason close_reason() const
Gets a value that indicates why the form was closed.
Definition: form_closed_event_args.h:35
form_closed_event_args(forms::close_reason close_reason)
Initializes a new instance of the form_closed_event_args class.
Definition: form_closed_event_args.h:25
Contains xtd::forms::close_reason enum class.
Contains xtd::event_args event args.
close_reason
Specifies the reason that a form was closed.
Definition: close_reason.h:18
@ none
The cause of the closure was not defined or could not be determined.
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