xtd 0.2.0
Loading...
Searching...
No Matches
progress_bar_styles.h
Go to the documentation of this file.
1
4#pragma once
6#if !defined(__XTD_FORMS_NATIVE_LIBRARY__)
7#error "Do not include this file: Internal use only"
8#endif
10
11#include <cstddef>
12
13#if !defined(PBS_SMOOTH)
20constexpr size_t PBS_SMOOTH = 0x00000001;
27constexpr size_t PBS_VERTICAL = 0x00000004;
34constexpr size_t PBS_MARQUEE = 0x00000008;
41constexpr size_t PBS_SMOOTHREVERSE = 0x00000010;
42#endif
constexpr size_t PBS_SMOOTHREVERSE
Determines the animation behavior that the progress bar should use when moving backward (from a highe...
Definition progress_bar_styles.h:41
constexpr size_t PBS_SMOOTH
The progress bar displays progress status in a smooth scrolling bar instead of the default segmented ...
Definition progress_bar_styles.h:20
constexpr size_t PBS_MARQUEE
The progress indicator does not grow in size but instead moves repeatedly along the length of the bar...
Definition progress_bar_styles.h:34
constexpr size_t PBS_VERTICAL
The progress bar displays progress status vertically, from bottom to top.
Definition progress_bar_styles.h:27