The following code example demonstrate the use of save_file_dialog dialog.
#include <xtd/xtd>
class form1 :
public form {
public:
form1() {
text("Save file dialog example");
controls().push_back(button1);
button1.location({10, 10});
button1.text("Save...");
button1.click += [&] {
dialog.
initial_directory(environment::get_folder_path(environment::special_folder::desktop));
dialog.
filter(
"Text Files (*.txt)|*.txt;*.md|All Files (*.*)|*.*");
label1.text(ustring::format(
"File = {0}", dialog.
file_name()));
};
label1.parent(*this);
label1.text("File = ");
label1.auto_size(true);
label1.location({10, 40});
}
private:
};
int main() {
application::run(form1());
}
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition system_report.h:17