Represents a common dialog box that displays input box.
Windows | macOS | Gnome | |
---|---|---|---|
Light | | | |
Dark | | | |
Public Static Methods | |
static xtd::forms::dialog_result | show (xtd::string &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::string &value, const xtd::forms::iwin32_window &owner, const xtd::string &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::string &value, const xtd::forms::iwin32_window &owner, const xtd::string &text, const xtd::string &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::string &value, const xtd::forms::iwin32_window &owner, const xtd::string &text, const xtd::string &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::string &value, const xtd::forms::iwin32_window &owner, const xtd::string &text, const xtd::string &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::string &value, const xtd::forms::iwin32_window &owner, const xtd::string &text, const xtd::string &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::string &value) |
Displays an input box. The input box displays a text value. | |
static xtd::forms::dialog_result | show (xtd::string &value, const xtd::string &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::string &value, const xtd::string &text, const xtd::string &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::string &value, const xtd::string &text, const xtd::string &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::string &value, const xtd::string &text, const xtd::string &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::string &value, const xtd::string &text, const xtd::string &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. | |
|
static |
Displays an input box in front of the specified window. The input box displays a text value.
value | A xtd::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
|
static |
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::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::string that specifies the invite message text to display. |
|
static |
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::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::string that specifies the invite message text to display. |
caption | A xtd::string that specifies the caption title of dialog. |
|
static |
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::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::string that specifies the invite message text to display. |
caption | A xtd::string that specifies the caption title of dialog. |
style | On of xtd::forms::input_box_style values. |
|
static |
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::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::string that specifies the invite message text to display. |
caption | A xtd::string 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 |
|
static |
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::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::string that specifies the invite message text to display. |
caption | A xtd::string 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. |
|
static |
Displays an input box. The input box displays a text value.
value | A xtd::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
|
static |
Displays an input box. The input box displays a input text value with specified invite message text.
value | A xtd::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::string that specifies the invite message text to display. |
|
static |
Displays an input box. The input box displays a input text value with specified invite message text and caption title.
value | A xtd::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::string that specifies the invite message text to display. |
caption | A xtd::string that specifies the caption title of dialog. |
|
static |
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::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::string that specifies the invite message text to display. |
caption | A xtd::string that specifies the caption title of dialog. |
style | On of xtd::forms::input_box_style values. |
|
static |
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::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::string that specifies the invite message text to display. |
caption | A xtd::string 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 |
|
static |
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::string that specifies the text to display. |
owner | A iwin32_window that represents the owner window of the color box. |
text | A xtd::string that specifies the invite message text to display. |
caption | A xtd::string 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. |