demonstrates how to use xtd::forms::lcd_label_with_sixteen_segment control. 
#include <xtd/drawing/color_converter>
#include <xtd/forms/application>
#include <xtd/forms/form>
#include <xtd/forms/lcd_label>
#include <xtd/forms/timer>
 
 
auto main() -> int {
  auto index = 0_z;
  
  form_main.
text(
"Lcd label with sixteen segment example");
 
  
  label.lcd_style(forms::lcd_style::sixteen_segment_display);
 
  
    if (++index >= 
label.valid_characters().
size()) index = 0;
 
  };
  
  application::run(form_main);
}
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition brush.hpp:18
 
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10