The following code example demonstrate the use of folder_browser_dialog dialog.
#include <xtd/xtd>
using namespace std;
class form1 :
public form {
public:
form1() {
text("Folder browser dialog example");
controls().push_back(button1);
button1.location({10, 10});
button1.text("Folder...");
button1.click += [&] {
label1.text(ustring::format("Path = {}", selected_path));
}
};
label1.parent(*this);
label1.text("Path = ");
label1.auto_size(true);
label1.location({10, 40});
}
private:
};
int main() {
application::run(form1());
}
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:48
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17