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