#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/folder_browser_dialog>
#include <xtd/forms/form>
#include <xtd/forms/label>
class form1 :
public form {
public:
form1() {
text(
"Folder browser dialog example");
auto_scroll(true);
selected_path = dialog.selected_path();
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 {
}
Contains classes that represent ASCII and Unicode character encodings; abstract base classes for conv...
Definition basic_string_builder.hpp:16
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8