Represents a common dialog box that displays a replace dialog. This class cannot be inherited.
| Windows | macOS | Gnome | |
|---|---|---|---|
| Light |
|
|
|
| Dark |
|
|
|
Public Static Methods | |
| template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t > | |
| static void | show (const iwin32_window &owner, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all) |
| Displays a replace dialog box. | |
| template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t > | |
| static void | show (const iwin32_window &owner, const xtd::string &find_string, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all) |
| Displays a replace dialog box. | |
| template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t > | |
| static void | show (const iwin32_window &owner, const xtd::string &find_string, const xtd::string &replace_string, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all) |
| Displays a replace dialog box. | |
| template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t > | |
| static void | show (const iwin32_window &owner, const xtd::string &find_string, const xtd::string &replace_string, const xtd::string &title, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all) |
| Displays a replace dialog box. | |
| template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t > | |
| static void | show (const iwin32_window &owner, const xtd::string &find_string, const xtd::string &replace_string, const xtd::string &title, bool match_case, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all) |
| Displays a replace dialog box. | |
| template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t > | |
| static void | show (const iwin32_window &owner, const xtd::string &find_string, const xtd::string &replace_string, const xtd::string &title, bool match_case, bool whole_word, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all) |
| Displays a replace dialog box. | |
|
inlinestatic |
Displays a replace dialog box.
| owner | An xtd::forms::iwin32_window that represents the owner window of the replace dialog box. |
| find_next | The callback called when the user click the find button. |
| replace | The callback called when the user click the replace button. |
| replace_all | The callback called when the user click the replace all button. |
|
inlinestatic |
Displays a replace dialog box.
| owner | An xtd::forms::iwin32_window that represents the owner window of the replace dialog box. |
| find_string | The string to find. |
| find_next | The callback called when the user click the find button. |
| replace | The callback called when the user click the replace button. |
| replace_all | The callback called when the user click the replace all button. |
|
inlinestatic |
Displays a replace dialog box.
| owner | An xtd::forms::iwin32_window that represents the owner window of the replace dialog box. |
| find_string | The string to find. |
| replace_string | The replaced string. |
| find_next | The callback called when the user click the find button. |
| replace | The callback called when the user click the replace button. |
| replace_all | The callback called when the user click the replace all button. |
|
inlinestatic |
Displays a replace dialog box.
| owner | An xtd::forms::iwin32_window that represents the owner window of the replace dialog box. |
| find_string | The string to find. |
| replace_string | The replaced string. |
| title | The find dialog title. |
| find_next | The callback called when the user click the find button. |
| replace | The callback called when the user click the replace button. |
| replace_all | The callback called when the user click the replace all button. |
|
inlinestatic |
Displays a replace dialog box.
| owner | An xtd::forms::iwin32_window that represents the owner window of the replace dialog box. |
| find_string | The string to find. |
| replace_string | The replaced string. |
| title | The find dialog title. |
| match_case | true if match case option selected; otherwise false. |
| find_next | The callback called when the user click the find button. |
| replace | The callback called when the user click the replace button. |
| replace_all | The callback called when the user click the replace all button. |
|
inlinestatic |
Displays a replace dialog box.
| owner | An xtd::forms::iwin32_window that represents the owner window of the replace dialog box. |
| find_string | The string to find. |
| replace_string | The replaced string. |
| title | The find dialog title. |
| match_case | true if match case option selected; otherwise false. |
| whole_word | true if whole word option selected; otherwise false. |
| find_next | The callback called when the user click the find button. |
| replace | The callback called when the user click the replace button. |
| replace_all | The callback called when the user click the replace all button. |