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.
|
#include <input_box.h>
Represents a common dialog box that displays input box.
Inherits xtd::static_object.
Static Public Member Functions | |
static xtd::forms::dialog_result | show (xtd::ustring &value) |
Displays an input box. The input box displays a text value. | |
static xtd::forms::dialog_result | show (xtd::ustring &value, const xtd::forms::iwin32_window &owner) |
Displays an input box in front of the specified window. The input box displays a text value. | |
static xtd::forms::dialog_result | show (xtd::ustring &value, const xtd::forms::iwin32_window &owner, const xtd::ustring &text) |
Displays an input box in front of the specified window. The input box displays a input text value with specified invite message text. | |
static xtd::forms::dialog_result | show (xtd::ustring &value, const xtd::forms::iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption) |
Displays an input box in front of the specified window. The input box displays a input text value with specified invite message text and caption title. | |
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) |
Displays an input box in front of the specified window. The input box displays a input text value with specified invite message text, caption title and input box style. | |
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) |
Displays an input box in front of the specified window. The input box displays a input text value with specified invite message text, caption title, input box style and character casing. | |
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) |
Displays an input box in front of the specified window. The input box displays a input text value with specified invite message text, caption title, input box style, character casing and word_wrap. | |
static xtd::forms::dialog_result | show (xtd::ustring &value, const xtd::ustring &text) |
Displays an input box. The input box displays a input text value with specified invite message text. | |
static xtd::forms::dialog_result | show (xtd::ustring &value, const xtd::ustring &text, const xtd::ustring &caption) |
Displays an input box. The input box displays a input text value with specified invite message text and caption title. | |
static xtd::forms::dialog_result | show (xtd::ustring &value, const xtd::ustring &text, const xtd::ustring &caption, xtd::forms::input_box_style style) |
Displays an input box. The input box displays a input text value with specified invite message text, caption title and input box style. | |
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) |
Displays an input box. The input box displays a input text value with specified invite message text, caption title, input box style and character casing. | |
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) |
Displays an input box. The input box displays a input text value with specified invite message text, caption title, input box style, character casing and word_wrap. | |
|
inlinestatic |
Displays an input box. The input box displays a text value.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
|
inlinestatic |
Displays an input box in front of the specified window. The input box displays a text value.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
|
inlinestatic |
Displays an input box in front of the specified window. The input box displays a input text value with specified invite message text.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::ustring that specifies the invite message text to display. |
|
inlinestatic |
Displays an input box in front of the specified window. The input box displays a input text value with specified invite message text and caption title.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::ustring that specifies the invite message text to display. |
caption | A xtd::ustring that specifies the caption title of dialog. |
|
inlinestatic |
Displays an input box in front of the specified window. The input box displays a input text value with specified invite message text, caption title and input box style.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::ustring that specifies the invite message text to display. |
caption | A xtd::ustring that specifies the caption title of dialog. |
style | On of xtd::forms::input_box_style values. |
|
inlinestatic |
Displays an input box in front of the specified window. The input box displays a input text value with specified invite message text, caption title, input box style and character casing.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::ustring that specifies the invite message text to display. |
caption | A xtd::ustring that specifies the caption title of dialog. |
style | On of xtd::forms::input_box_style values. The default is xtd::forms::input_box_style::normal |
casing | On of xtd::forms::character_casing values. The default is xtd::forms::character_casing::normal |
|
inlinestatic |
Displays an input box in front of the specified window. The input box displays a input text value with specified invite message text, caption title, input box style, character casing and word_wrap.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::ustring that specifies the invite message text to display. |
caption | A xtd::ustring that specifies the caption title of dialog. |
style | On of xtd::forms::input_box_style values. The default is xtd::forms::input_box_style::normal |
casing | On of xtd::forms::character_casing values. The default is xtd::forms::character_casing::normal |
word_wrap | true if word_wrap; otherwise false. The default is true. |
|
inlinestatic |
Displays an input box. The input box displays a input text value with specified invite message text.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::ustring that specifies the invite message text to display. |
|
inlinestatic |
Displays an input box. The input box displays a input text value with specified invite message text and caption title.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::ustring that specifies the invite message text to display. |
caption | A xtd::ustring that specifies the caption title of dialog. |
|
inlinestatic |
Displays an input box. The input box displays a input text value with specified invite message text, caption title and input box style.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::ustring that specifies the invite message text to display. |
caption | A xtd::ustring that specifies the caption title of dialog. |
style | On of xtd::forms::input_box_style values. |
|
inlinestatic |
Displays an input box. The input box displays a input text value with specified invite message text, caption title, input box style and character casing.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::ustring that specifies the invite message text to display. |
caption | A xtd::ustring that specifies the caption title of dialog. |
style | On of xtd::forms::input_box_style values. The default is xtd::forms::input_box_style::normal |
casing | On of xtd::forms::character_casing values. The default is xtd::forms::character_casing::normal |
|
inlinestatic |
Displays an input box. The input box displays a input text value with specified invite message text, caption title, input box style, character casing and word_wrap.
value | A xtd::ustring that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::ustring that specifies the invite message text to display. |
caption | A xtd::ustring that specifies the caption title of dialog. |
style | On of xtd::forms::input_box_style values. The default is xtd::forms::input_box_style::normal |
casing | On of xtd::forms::character_casing values. The default is xtd::forms::character_casing::normal |
word_wrap | true if word_wrap; otherwise false. The default is true. |