xtd - Reference Guide  0.1.2
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
up_down_base.h
Go to the documentation of this file.
1
4#pragma once
5#include "border_style.h"
6#include "container_control.h"
7
9namespace xtd {
11 namespace forms {
19 public:
22 virtual forms::border_style border_style() const {return border_style_;}
27
28 protected:
31
32 forms::create_params create_params() const override;
33
35 forms::border_style border_style_ = forms::border_style::fixed_single;
37 };
38 }
39}
Contains xtd::forms::border_style enum class.
Provides focus-management functionality for controls that can function as a container for other contr...
Definition container_control.h:21
Implements the basic functionality required by a spin box (also known as an up-down control).
Definition up_down_base.h:18
virtual up_down_base & border_style(forms::border_style value)
Sets the border style for the spin box (also known as an up-down control).
up_down_base()
Initialize a new instance of up_down_base class.
virtual forms::border_style border_style() const
Gets the border style for the spin box (also known as an up-down control).
Definition up_down_base.h:22
forms::create_params create_params() const override
Gets the required creation parameters when the control handle is created.
Contains xtd::forms::container_control class.
#define forms_export_
Define shared library export.
Definition forms_export.h:13
border_style
Specifies the border style for a control.
Definition border_style.h:18
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