xtd - Reference Guide
0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Toggle main menu visibility
Home
Categories
Documentation
Namespaces
Classes
Class List
Class Index
Class Hierarchy
Files
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Modules
Pages
Loading...
Searching...
No Matches
xtd.forms
include
xtd
forms
tick_style.h
Go to the documentation of this file.
1
4
#pragma once
5
#include <
xtd/ustring.h
>
6
8
namespace
xtd
{
10
namespace
forms
{
18
enum class
tick_style
{
20
none
= 0,
22
top_left
= 1,
24
bottom_right
= 2,
26
both
= 3,
27
};
28
30
inline
std::ostream& operator<<(std::ostream& os,
tick_style
value) {
return
os <<
to_string
(value, {{
tick_style::none
,
"none"
}, {
tick_style::top_left
,
"top_left"
}, {
tick_style::bottom_right
,
"bottom_right"
}, {
tick_style::both
,
"both"
}});}
31
inline
std::wostream& operator<<(std::wostream& os,
tick_style
value) {
return
os <<
to_string
(value, {{
tick_style::none
, L
"none"
}, {
tick_style::top_left
, L
"top_left"
}, {
tick_style::bottom_right
, L
"bottom_right"
}, {
tick_style::both
, L
"both"
}});}
33
}
34
}
xtd::to_string
std::string to_string(const value_t &value, const std::string &fmt, const std::locale &loc)
Convert a specified value into a string with specified format and locale.
Definition:
to_string.h:37
xtd::forms::tick_style
tick_style
Specifies the location of tick marks in a track_bar control.
Definition:
tick_style.h:18
xtd::forms::tick_style::none
@ none
No tick marks appear in the control.
xtd::forms::tick_style::top_left
@ top_left
Tick marks are located on the top of a horizontal control or on the left of a vertical control.
xtd::forms::tick_style::bottom_right
@ bottom_right
Tick marks are located on the bottom of a horizontal control or on the right side of a vertical contr...
xtd::forms::tick_style::both
@ both
Tick marks are located on both sides of the control.
xtd::forms::anchor_styles::none
@ none
The cause of the closure was not defined or could not be determined.
xtd::forms::arrange_starting_position::top_left
@ top_left
Starts at the upper-left corner of the screen.
xtd::forms::arrange_starting_position::bottom_right
@ bottom_right
Starts at the lower-right corner of the screen.
xtd::forms
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition:
about_box.h:13
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition:
system_report.h:17
ustring.h
Contains xtd::ustring class.
Generated on Sat Jan 28 2023 18:12:26 for xtd - Reference Guide by
Gammasoft
. All rights reserved.