xtd 0.2.0
Loading...
Searching...
No Matches
folder_browser_box.cpp

demonstrates the use of xtd::forms::folder_browser_box dialog.

Windows

macOS

Gnome

#include <xtd/xtd>
class form1 : public form {
public:
form1() {
text("Folder browser box example");
controls().push_back(button1);
button1.location({10, 10});
button1.text("Folder...");
button1.click += delegate_ {
if (folder_browser_box::show(selected_path, *this) == forms::dialog_result::ok)
label1.text(string::format("Path = {}", selected_path));
};
label1.parent(*this);
label1.text("Path = ");
label1.auto_size(true);
label1.location({10, 50});
}
private:
button button1;
label label1;
string selected_path;
};
auto main() -> int {
application::run(form1 {});
}
#define delegate_
The declaration of a delegate type is similar to a method signature. It has a return value and any nu...
Definition delegate.hpp:900