The xtd::forms::style_sheets namespace contains various properties, states, and subcontrols that make it possible to customize the look of control.
|
enum | border_type {
border_type::none,
border_type::hidden = none,
border_type::solid,
border_type::inset,
border_type::outset,
border_type::groove,
border_type::ridge,
border_type::theme,
border_type::dashed,
border_type::dot_dash,
border_type::dot_dot_dash,
border_type::dotted,
border_type::double_border
} |
| The border_type enum class specifies what kind of border to display. More...
|
|
enum | image_type {
image_type::none,
image_type::url,
image_type::linear_gradient,
image_type::radial_gradient,
image_type::conic_gradient
} |
| The image_type enum class specifies what kind of image to display. More...
|
|
enum | length_unit {
length_unit::centimeters,
length_unit::millimeters,
length_unit::inches,
length_unit::pixels,
length_unit::points,
length_unit::picas,
length_unit::element,
length_unit::element_x_height,
length_unit::chase,
length_unit::root_element,
length_unit::viewport_width,
length_unit::viewport_height,
length_unit::viewport_min,
length_unit::viewport_max,
length_unit::percent
} |
| The length_unit enum class specifies the units for xtd::forms::style_sheets::length. More...
|
|
enum | pseudo_state {
pseudo_state::standard,
pseudo_state::hover = 0b1,
pseudo_state::pressed = 0b10,
pseudo_state::disabled = 0b100,
pseudo_state::focused = 0b1000,
pseudo_state::default_state = 0b10000,
pseudo_state::unchecked = standard,
pseudo_state::checked = 0b100000,
pseudo_state::mixed = 0b1000000,
pseudo_state::link = 0b10000000,
pseudo_state::visited = 0b100000000,
pseudo_state::active = 0b1000000000
} |
| The pseudo_state enum class flag specifies the pseudo state of an element. More...
|
|
enum | text_decoration {
text_decoration::none,
text_decoration::overline,
text_decoration::line_through,
text_decoration::underline
} |
| The xtd::forms::style_sheets::text_decoration enum class is used to set or remove decorations from text. More...
|
|
enum | text_transformation {
text_transformation::none,
text_transformation::lowercase,
text_transformation::uppercase,
text_transformation::capitalize
} |
| The xtd::forms::style_sheets::text_transformation enum class is used to specify uppercase and lowercase letters in a text. More...
|
|
enum | white_space {
white_space::normal,
white_space::no_wrap,
white_space::pre,
white_space::pre_line,
white_space::pre_wrap
} |
| The white_space enum class specifies how white-space inside an element is handled. More...
|
|