demonstrates the use of xtd::forms::about_dialog::from_executing_assembly_informations method.
- Windows
-
- macOS
-
- Gnome
-
#include <xtd/forms/about_dialog>
#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/form>
#include "../resources/gammasoft_64x64.xpm"
class form1 :
public form {
public:
form1() {
text(
"About dialog from executng assembly information example");
dialog.show(*this);
};
}
private:
};
auto main()->int {
}