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.
fixed_layout_panel.h
Go to the documentation of this file.
1 #pragma once
5 #include "panel.h"
6 
8 namespace xtd {
10  namespace forms {
21  class fixed_layout_panel : public panel {
22  public:
24  fixed_layout_panel() = default;
25 
26  protected:
27  void on_layout(const xtd::event_args& e) override;
28  };
29  }
30 }
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: event_args.h:18
Used to group collections of fixed aligned controls.
Definition: fixed_layout_panel.h:21
fixed_layout_panel()=default
Initialises a new instance of fixed layout panel class.
void on_layout(const xtd::event_args &e) override
Raises the control::layout event.
Used to group collections of controls.
Definition: panel.h:21
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
Contains xtd::forms::panel container.