demonstrates the use of xtd::forms::color_box dialog.
- Windows
-
- macOS
-
- Gnome
-
#include <xtd/xtd>
class form1 : public form {
public:
form1() {
text("Color box example");
controls().add(button1);
button1.location({10, 10});
button1.text("Color...");
auto color = back_color();
if (color_box::show(color,
self_) == forms::dialog_result::ok)
back_color(color);
};
}
private:
button button1;
};
auto main() -> int {
application::run(form1 {});
}
#define self_
The self_ expression is a reference value expression whose value is the reference of the implicit obj...
Definition self.hpp:20
#define delegate_
The declaration of a delegate type is similar to a method signature. It has a return value and any nu...
Definition delegate.hpp:932