#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/folder_browser_box>
#include <xtd/forms/form>
#include <xtd/forms/label>
class form1 :
public form {
public:
form1() {
text("Folder browser box example");
controls().push_back(button1);
button1.location({10, 10});
button1.text("Folder...");
button1.click += [&] {
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:
string selected_path;
};
auto main() -> int {
application::run(form1 {});
}
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10