#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/debug_form>
#include <xtd/forms/form>
#include <xtd/forms/replace_box>
#include <xtd/diagnostics/debug>
class form1 :
public form {
public:
form1() {
text("Replace box example");
find_button.parent(*this);
find_button.text("replace...");
find_button.location({10, 10});
find_button.click += [&] {
replace_box::show(*
this,
"Gammasoft",
"xtd",
"Replace", [&](
object& sender,
const find_event_args& e) {
diagnostics::debug::write_line(string::format("Find next : find string [{}], match case [{}], whole word [{}]", e.find_string(), e.match_case(), e.whole_word()));
diagnostics::debug::write_line(string::format("Replace : find string [{}], replace string [{}], match case [{}], whole word [{}]", e.find_string(), e.replace_string(), e.match_case(), e.whole_word()));
diagnostics::debug::write_line(string::format("Replace all : find string [{}], replace string [{}], match case [{}], whole word [{}]", e.find_string(), e.replace_string(), e.match_case(), e.whole_word()));
});
};
}
private:
};
auto main() -> int {
application::run(form1 {});
}
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10