The following code example demonstrate the use of open_file_dialog dialog.
#include <xtd/xtd>
using namespace std;
class form1 :
public form {
public:
form1() {
text("Open file dialog example");
controls().push_back(button1);
button1.location({10, 10});
button1.text("Open...");
button1.click += [&] {
dialog.
initial_directory(!file_name.empty() ? io::path::get_directory_name(file_name) : environment::get_folder_path(environment::special_folder::desktop));
dialog.
file_name(io::path::get_file_name(file_name));
dialog.
filter(
"Text Files (*.txt)|*.txt|All Files (*.*)|*.*");
label1.text(ustring::format("File = {}", file_name));
}
};
label1.parent(*this);
label1.text("File = ");
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