#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/form>
#include <xtd/forms/message_box>
#include <xtd/forms/save_file_box>
#include <xtd/environment>
#include <xtd/literals>
 
 
class form1 : 
public form {
 
public:
  form1() {
    text("Save file box example");
    client_size({400, 200});
    controls().push_back(button_save_file);
    
    button_save_file.parent(*this)
    .location({10, 10})
    .text("Save file")
    .click += [this] {
      auto file_name = "MyFile.txt"_s;
      auto res = save_file_box::show(file_name, *this, "Save file as...", environment::get_folder_path(environment::special_folder::my_documents), "*.txt");
      if (res == dialog_result::ok)
        message_box::show(string::format("File will be saved as:\n{}", file_name));
    };
  }
  
private:
};
 
auto main() -> int {
  application::run(form1 {});
}
size_t size
Represents a size of any object in bytes.
Definition size.hpp:23
 
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10