xtd 0.2.0
Loading...
Searching...
No Matches
xtd::forms::about_box Class Referencefinal
Inheritance diagram for xtd::forms::about_box:
xtd::static_object

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  
 
 
 
 
 
Dark  
 
 
 
 
 
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) 2024 Gammasoft.\nAll rights reserved.", "https://gammasoft71.wixsite.com/gammasoft", "Gammasoft");
};
}
private:
button button1;
};
auto main()->int {
application::run(form1 {});
}
Encapsulates a GDI+ bitmap, which consists of the pixel data for a graphics image and its attributes....
Definition bitmap.h:26
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:47
Represents a window or dialog box that makes up an application's user interface.
Definition form.h:52
@ button1
The first button on the message box is the default button.
@ text
The xtd::forms::status_bar_panel displays text in the standard font.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10

Public Aliases

using author_collection = xtd::forms::about_dialog::author_collection
 Represents an author collection.
 
using artist_collection = xtd::forms::about_dialog::artist_collection
 Represents an artist 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.
 

Public Static Methods

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 ()
 Displays an about box.
 
static void show (const xtd::ustring &text)
 Displays an about box. The about box displays a message.
 
static void show (const xtd::ustring &text, const xtd::ustring &caption)
 Displays an 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::icon &icon)
 Displays an 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 an 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 an 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 an 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 an 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 an 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 an 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 an 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 an 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 an 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 an 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::bitmap &icon)
 Displays an 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 an 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 an 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 an 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 an 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 an 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 an 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 an 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 an 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 an 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 an 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

◆ author_collection

◆ documenter_collection

◆ translator_collection

Member Function Documentation

◆ show() [1/39]

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

Displays an about box.

◆ show() [2/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 about box.

◆ show() [3/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 about 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 
)
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 about 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 
)
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 about 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 
)
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 about 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 
)
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 about 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 
)
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 about 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 
)
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 about 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 
)
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 about 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 
)
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 about 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 
)
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 about 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 
)
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 about 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 
)
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 about 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 
)
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 about 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)
static

Displays an 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 an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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 
)
static

Displays an 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: