xtd 0.2.0
xtd::forms::about_box Class Referencefinal

Definition

Represents a dialog box that displays about box.

Header
#include <xtd/forms/about_box>
Namespace
xtd::forms
Library
xtd.forms
Appearance
Windows macOS Gnome
Light  
dialog_about_dialog_w.png
    html dialog_about_dialog_m.png    html dialog_about_dialog_g.png 
Dark  
dialog_about_dialog_wd.png
    html dialog_about_dialog_md.png    html dialog_about_dialog_gd.png 
Examples
The following code example demonstrates the use of about_box dialog.
#include <xtd/forms/about_box>
#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/form>
#include "../resources/gammasoft_64x64.xpm"
using namespace xtd;
using namespace xtd::forms;
class form1 : public form {
public:
form1() {
text("About box example");
controls().push_back(button1);
button1.location({10, 10});
button1.text("About...");
button1.click += [&] {
about_box::show("About box description.", "About box", xtd::drawing::bitmap(gammasoft_64x64_xpm), "1.0", "1.0.0", "Copyright (c) 2023 Gammasoft.\nAll rights reserved.", "https://gammasoft71.wixsite.com/gammasoft", "Gammasoft");
};
}
private:
};
auto main()->int {
application::run(form1 {});
}

Methods

using author_collection = xtd::forms::about_dialog::author_collection
 Represents a author collection. More...
 
using artist_collection = xtd::forms::about_dialog::artist_collection
 Represents a artist collection. More...
 
using documenter_collection = xtd::forms::about_dialog::documenter_collection
 Represents a documenter collection. More...
 
using translator_collection = xtd::forms::about_dialog::translator_collection
 Represents a translator collection. More...
 
static void show (const iwin32_window &owner)
 Displays an about box in front of the specified window. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text)
 Displays an about box in front of the specified window. The about box displays a message. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption)
 Displays an about box in front of the specified window. The about box displays a message and title bar caption. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption and icon. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon and version. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version and long version. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version and copyright. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright and website. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright and website with label. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label and authors. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors and documentation writers. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters, const translator_collection translators)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers and translators. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters, const translator_collection translators, const artist_collection &artists)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators and artists. More...
 
static void show (const iwin32_window &owner, const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters, const translator_collection translators, const artist_collection &artists, const xtd::ustring &license)
 Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators, artists and license. More...
 
static void show ()
 Displays a about box. More...
 
static void show (const xtd::ustring &text)
 Displays a about box. The about box displays a message. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption)
 Displays a about box. The about box displays a message and title bar caption. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon)
 Displays a about box. The about box displays a message, title bar caption and icon. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version)
 Displays a about box. The about box displays a message, title bar caption, icon and version. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version)
 Displays a about box. The about box displays a message, title bar caption, icon, version and long version. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version and copyright. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright and website. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright and website with label. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label and authors. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors and documentation writers. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters, const translator_collection translators)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers and translators. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters, const translator_collection translators, const artist_collection &artists)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators and artists. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::icon &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters, const translator_collection translators, const artist_collection &artists, const xtd::ustring &license)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators, artists and license. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon)
 Displays a about box. The about box displays a message, title bar caption and icon. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon, const xtd::ustring &version)
 Displays a about box. The about box displays a message, title bar caption, icon and version. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon, const xtd::ustring &version, const xtd::ustring &long_version)
 Displays a about box. The about box displays a message, title bar caption, icon, version and long version. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version and copyright. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright and website. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright and website with label. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label and authors. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors and documentation writers. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters, const translator_collection translators)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers and translators. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters, const translator_collection translators, const artist_collection &artists)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators and artists. More...
 
static void show (const xtd::ustring &text, const xtd::ustring &caption, const xtd::drawing::bitmap &icon, const xtd::ustring &version, const xtd::ustring &long_version, const xtd::ustring &copyright, const xtd::ustring &website, const xtd::ustring &website_label, const author_collection &authors, const documenter_collection &documenters, const translator_collection translators, const artist_collection &artists, const xtd::ustring &license)
 Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators, artists and license. More...
 

Member Typedef Documentation

◆ artist_collection

◆ author_collection

◆ documenter_collection

◆ translator_collection

Member Function Documentation

◆ show() [1/39]

static void xtd::forms::about_box::show ( const iwin32_window owner)
static

Displays an about box in front of the specified window.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.

◆ show() [2/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text 
)
static

Displays an about box in front of the specified window. The about box displays a message.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.

◆ show() [3/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption 
)
static

Displays an about box in front of the specified window. The about box displays a message and title bar caption.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.

◆ show() [4/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption and icon.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.

◆ show() [5/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon and version.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.

◆ show() [6/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version and long version.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.

◆ show() [7/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version and copyright.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.

◆ show() [8/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright and website.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.

◆ show() [9/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright and website with label.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.

◆ show() [10/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label and authors.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.

◆ show() [11/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors and documentation writers.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.

◆ show() [12/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters,
const translator_collection  translators 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers and translators.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.
translatorsA translators_collection that specifies the translators collection.

◆ show() [13/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters,
const translator_collection  translators,
const artist_collection artists 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators and artists.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.
translatorsA translators_collection that specifies the translators collection.
artistsA artists_collection that specifies the designers collection.

◆ show() [14/39]

static void xtd::forms::about_box::show ( const iwin32_window owner,
const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters,
const translator_collection  translators,
const artist_collection artists,
const xtd::ustring license 
)
static

Displays an about box in front of the specified window. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators, artists and license.

Parameters
ownerA iwin32_window that represents the owner window of the busy box.
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.
translatorsA translators_collection that specifies the translators collection.
artistsA artists_collection that specifies the designers collection.
licenseA string that specifies the license text to display.

◆ show() [15/39]

static void xtd::forms::about_box::show ( )
static

Displays a about box.

Examples:
about_box.cpp, and hello_world_xtd.cpp.

◆ show() [16/39]

static void xtd::forms::about_box::show ( const xtd::ustring text)
static

Displays a about box. The about box displays a message.

Parameters
textA string that specifies the text to display.

◆ show() [17/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption 
)
static

Displays a about box. The about box displays a message and title bar caption.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.

◆ show() [18/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon 
)
static

Displays a about box. The about box displays a message, title bar caption and icon.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.

◆ show() [19/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version 
)
static

Displays a about box. The about box displays a message, title bar caption, icon and version.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.

◆ show() [20/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version and long version.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.

◆ show() [21/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version and copyright.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.

◆ show() [22/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright and website.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.

◆ show() [23/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright and website with label.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.

◆ show() [24/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label and authors.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.

◆ show() [25/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors and documentation writers.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.

◆ show() [26/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters,
const translator_collection  translators 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers and translators.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.
translatorsA translators_collection that specifies the translators collection.

◆ show() [27/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters,
const translator_collection  translators,
const artist_collection artists 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators and artists.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.
translatorsA translators_collection that specifies the translators collection.
artistsA artists_collection that specifies the designers collection.

◆ show() [28/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters,
const translator_collection  translators,
const artist_collection artists,
const xtd::ustring license 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators, artists and license.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.
translatorsA translators_collection that specifies the translators collection.
artistsA artists_collection that specifies the designers collection.
licenseA string that specifies the license text to display.

◆ show() [29/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon 
)
static

Displays a about box. The about box displays a message, title bar caption and icon.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.

◆ show() [30/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon,
const xtd::ustring version 
)
static

Displays a about box. The about box displays a message, title bar caption, icon and version.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.

◆ show() [31/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version and long version.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.

◆ show() [32/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version and copyright.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.

◆ show() [33/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright and website.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.

◆ show() [34/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright and website with label.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.

◆ show() [35/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label and authors.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.

◆ show() [36/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors and documentation writers.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.

◆ show() [37/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters,
const translator_collection  translators 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers and translators.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.
translatorsA translators_collection that specifies the translators collection.

◆ show() [38/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters,
const translator_collection  translators,
const artist_collection artists 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators and artists.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.
translatorsA translators_collection that specifies the translators collection.
artistsA artists_collection that specifies the designers collection.

◆ show() [39/39]

static void xtd::forms::about_box::show ( const xtd::ustring text,
const xtd::ustring caption,
const xtd::drawing::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label,
const author_collection authors,
const documenter_collection documenters,
const translator_collection  translators,
const artist_collection artists,
const xtd::ustring license 
)
static

Displays a about box. The about box displays a message, title bar caption, icon, version, long version, copyright, website with label, authors, documentation writers, translators, artists and license.

Parameters
textA string that specifies the text to display.
captionA string that specifies the title bar caption to display.
iconAn icon value that specifies the icon to display.
versionA string that specifies the version to display.
long_versionA string that specifies the long version to display.
copyrightA string that specifies the copyright to display.
websiteA string that specifies the website url.
website_labelA string that specifies the website label to display.
authorsA authors_collection that specifies the authors collection.
documentersA documenters_collection that specifies the documentation writers collection.
translatorsA translators_collection that specifies the translators collection.
artistsA artists_collection that specifies the designers collection.
licenseA string that specifies the license text to display.

The documentation for this class was generated from the following file: