xtd - Reference Guide  0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
Public Types | Static Public Member Functions | List of all members
xtd::forms::about_box Class Referencefinal

#include <about_box.h>

Definition

Represents a dialog box that displays about box.

Namespace
xtd::forms
Library
xtd.forms
Appearance
Windows macOS Gnome
Light
td
td
td
Dark
td
td
td
Examples
The following code example demonstrate the use of about_box dialog.
#include <xtd/xtd>
#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) 2021 Gammasoft.\nAll rights reserved.", "https://gammasoft71.wixsite.com/gammasoft", "Gammasoft");
};
}
private:
button button1;
};
int main() {
application::run(form1());
}
Encapsulates a GDI+ bitmap, which consists of the pixel data for a graphics image and its attributes....
Definition: bitmap.h:19
static void run()
Begins running a standard application message loop on the current thread, without a form.
Represents a Windows button control.
Definition: button.h:54
Represents a window or dialog box that makes up an application's user interface.
Definition: form.h:40
@ button1
The first button on the message box is the default button.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17

Inherits xtd::static_object.

Public Types

using artist_collection = xtd::forms::about_dialog::artist_collection
 Represents a artist collection.
 
using author_collection = xtd::forms::about_dialog::author_collection
 Represents a author collection.
 
using documenter_collection = xtd::forms::about_dialog::documenter_collection
 Represents a documenter collection.
 
using translator_collection = xtd::forms::about_dialog::translator_collection
 Represents a translator collection.
 

Static Public Member Functions

static void show ()
 Displays a about box.
 
static void show (const iwin32_window &owner)
 Displays an about box in front of the specified window.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
static void show (const xtd::ustring &text)
 Displays a about box. The about box displays a message.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 
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.
 

Member Typedef Documentation

◆ artist_collection

Represents a artist collection.

◆ author_collection

Represents a author collection.

◆ documenter_collection

Represents a documenter collection.

◆ translator_collection

Represents a translator collection.

Member Function Documentation

◆ show() [1/39]

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

Displays a about box.

◆ show() [2/39]

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

Displays an about box in front of the specified window.

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

◆ show() [3/39]

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

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() [4/39]

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

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() [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 
)
inlinestatic

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() [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 
)
inlinestatic

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() [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 
)
inlinestatic

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() [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 
)
inlinestatic

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() [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 
)
inlinestatic

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() [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 
)
inlinestatic

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() [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 
)
inlinestatic

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() [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 
)
inlinestatic

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() [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 
)
inlinestatic

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() [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 
)
inlinestatic

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() [15/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 
)
inlinestatic

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() [16/39]

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

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 
)
inlinestatic

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::bitmap icon 
)
inlinestatic

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::bitmap icon,
const xtd::ustring version 
)
inlinestatic

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::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version 
)
inlinestatic

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::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright 
)
inlinestatic

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::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website 
)
inlinestatic

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::bitmap icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label 
)
inlinestatic

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::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 
)
inlinestatic

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::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 
)
inlinestatic

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::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 
)
inlinestatic

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::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 
)
inlinestatic

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::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 
)
inlinestatic

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::icon icon 
)
inlinestatic

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::icon icon,
const xtd::ustring version 
)
inlinestatic

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::icon icon,
const xtd::ustring version,
const xtd::ustring long_version 
)
inlinestatic

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::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright 
)
inlinestatic

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::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website 
)
inlinestatic

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::icon icon,
const xtd::ustring version,
const xtd::ustring long_version,
const xtd::ustring copyright,
const xtd::ustring website,
const xtd::ustring website_label 
)
inlinestatic

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::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 
)
inlinestatic

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::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 
)
inlinestatic

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::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 
)
inlinestatic

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::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 
)
inlinestatic

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::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 
)
inlinestatic

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: