demonstrates the use of xtd::forms::save_file_box file dialog.
- Windows
-
- macOS
-
- Gnome
-
#include <xtd/xtd>
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})
.click += [this] {
};
}
private:
};
auto main()->int {
}