xtd 0.2.0
splitter_panel.h
Go to the documentation of this file.
1 #pragma once
5 #include "panel.h"
6 
8 namespace xtd {
10  namespace forms {
12  class split_container;
14 
25  class forms_export_ splitter_panel : public panel {
26  friend class split_container;
27  protected:
29 
32  splitter_panel() = default;
34 
36 
38  //using control::create;
44  static splitter_panel create(const drawing::point& location = {-1, -1}, const drawing::size& size = {-1, -1}, const xtd::ustring& name = xtd::ustring::empty_string);
51  static splitter_panel create(const control& parent, const drawing::point& location = {-1, -1}, const drawing::size& size = {-1, -1}, const xtd::ustring& name = xtd::ustring::empty_string);
53  };
54  }
55 }
Contains xtd::forms::panel container.
Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional ...
Definition: point.h:54
Stores an ordered pair of integers, which specify a height and width.
Definition: size.h:31
Creates a panel that is associated with a split_container.
Definition: splitter_panel.h:25
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Used to group collections of controls.
Definition: panel.h:30
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:46
Represents a control consisting of a movable bar that divides a container's display area into two res...
Definition: split_container.h:25
Defines the base class for controls, which are components with visual representation.
Definition: control.h:78
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
static const ustring empty_string
Represents the empty string.
Definition: ustring.h:53
Specifies that both the x and y coordinates of the control are defined.
size_t size
Represents a size of any object in bytes.
Definition: types.h:195