63      static xtd::forms::dialog_result show(
xtd::ustring& value, 
const xtd::forms::iwin32_window& owner, 
const xtd::ustring& text, 
const xtd::ustring& caption, 
xtd::forms::input_box_style style, 
xtd::forms::character_casing casing) {
return show_input_box(value, &owner, text, caption, style, casing);}
 
   74      static xtd::forms::dialog_result show(
xtd::ustring& value, 
const xtd::forms::iwin32_window& owner, 
const xtd::ustring& text, 
const xtd::ustring& caption, 
xtd::forms::input_box_style style, 
xtd::forms::character_casing casing, 
bool word_wrap) {
return show_input_box(value, &owner, text, caption, style, casing, word_wrap);}
 
  126      static xtd::forms::dialog_result show(
xtd::ustring& value, 
const xtd::ustring& text, 
const xtd::ustring& caption, 
xtd::forms::input_box_style style, 
xtd::forms::character_casing casing, 
bool word_wrap) {
return show_input_box(value, 
nullptr, text, caption, style, casing, word_wrap);}
 
  133        dialog.
text(caption);
 
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:48
 
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition: static.h:38
 
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17
 
Contains xtd::static_object class.