<AssemblyPublicKey>[00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 71 EB 6C 55 75 52 9C BF 72 44 F7 A6 EA 05 62 84 F9 EA E0 3B CF F2 CC 13 2C 9C 49 0A B3 09 EA B0 B5 6B CE 44 9D F5 03 D9 C0 A8 1E 52 05 85 CD BE 70 E2 FB 90 43 4B AC 04 FA 62 22 A8 00 98 B7 A1 A7 B3 AF 99 1A 41 23 24 BB 43 25 F6 B8 65 BB 64 EB F6 D1 C2 06 D5 73 2D DF BC 70 A7 38 9E E5 3E 0C 24 6E 32 79 74 1A D0 05 03 E4 98 42 E1 9B F3 7B 19 8B 40 21 26 CB 36 89 C2 EA 64 96 A4 7C B4]</AssemblyPublicKey>
</AssemblyInfo>
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <linklocation="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
The <seecref="T:Gtk.AboutDialog"/> offers a simple way to display information about a program like its logo, name, copyright, website and license. It is also possible to give credits to the authors, documenters, translators and artists who have worked on the program. An about dialog is typically opened when the user selects the About option from the Help menu. All parts of the dialog are optional.
</para>
<para>
About dialogs often contain links and email addresses. <seecref="T:Gtk.AboutDialog"/> supports this by offering global hooks, which are called when the user clicks on a link or email address, see <seecref="M:Gtk.AboutDialog.SetEmailHook()"/> and <seecref="M:Gtk.AboutDialog.SetUrlHook()"/>. Email addresses in the authors, documenters and artists properties are recognized by looking for <user@host>, URLs are recognized by looking for http://url, with url extending to the next space, tab or line break.
</para>
<!--
<para>
To make constructing a <seecref="T:Gtk.AboutDialog"/> as convenient as possible, you can use the function <seecref="M:Gtk.ShowAboutDialog()"/> which constructs and shows a dialog and keeps it around so that it can be shown again.
<remarks>This is not typically used by managed code. It is primarily used for enclosing an existing object, created by unmanaged code, in a managed wrapper.</remarks>
<summary>Gets and sets the list of people who contributed artwork to the program.</summary>
<value>A <seecref="T:System.String[]"/> containing the list of people who contributed artwork to the program.</value>
<remarks>Each string may contain email addresses and URLs, which will be displayed as links. See the remarks on <seecref="T:Gtk.AboutDialog"/> for more details.</remarks>
<summary>Gets and sets the list of people who authored the program.</summary>
<value>A <seecref="T:System.String[]"/> containing the list of people who authored the program.</value>
<remarks>Each string may contain email addresses and URLs, which will be displayed as links. See the remarks on <seecref="T:Gtk.AboutDialog"/> for more details.</remarks>
<summary>Gets and sets a comment about the program to appear immediately below the program name in the dialog.</summary>
<value>A <seecref="T:System.String"/> object containing a comment, description, or subtitle for the program.</value>
<remarks>
<para>If unset, no comment text is displayed.</para>
<para>This string is displayed in a label in the main dialog, thus it should be a short explanation of the main purpose of the program, not a detailed list of features.</para>
<summary>Gets and sets copyright information for the program.</summary>
<value>A <seecref="T:System.String"/> object containing copyright information for the program.</value>
<remarks>
<para>The copyright text appears below the <seecref="T:Gtk.AboutDialog.Comments"/> text and above the <seecref="T:Gtk.AboutDialog.Website"/> link on the dialog. If unset, not copyright text will appear.</para>
<summary>Gets and sets the list of people who contributed documentation to the program.</summary>
<value>A <seecref="T:System.String[]"/> containing the list of people who contributed documentation to the program.</value>
<remarks>Each string may contain email addresses and URLs, which will be displayed as links. See the remarks on <seecref="T:Gtk.AboutDialog"/> for more details.</remarks>
<summary>Gets and sets the license text of the program.</summary>
<value>A <seecref="T:System.String"/> object containing the license text to display with the current instance.</value>
<remarks>This string is displayed in a text view in a secondary dialog, therefore it is fine to use a long multi-paragraph text. Note that by default the text is not wrapped in the text view, thus it must contain the intended linebreaks.</remarks>
If set, this property overrides the <seecref="P:Gtk.AboutDialog.Logo"/> property.
</block>
<para>The name should be equal to the name of the program, without any sort of extension, eg. <c>"monodoc"</c>. The dialog will use that name to load an icon by trying the following:</para>
<listtype="number">
<item>
<term>The current icon theme, eg. <c>"/usr/share/icons/Tango/48x48/apps/monodoc.png"</c>.</term>
<summary>Gets and sets credits for the translation of the program.</summary>
<value>A <seecref="T:System.String"/> object containing credits for the translation of the program.</value>
<remarks>This string should be marked as translatable. Each string may contain email addresses and URLs, which will be displayed as links. See the remarks on <seecref="T:Gtk.AboutDialog"/> for more details.</remarks>
<summary>Get and set the version of the program.</summary>
<value>A <seecref="T:System.String"/> object containing the version of the program.</value>
<remarks>The most appropriate value to put here would be the assembly version, but any string is valid, eg "2.0.0.1", "2.5.3", "2.0 RC1", etc.</remarks>
<summary>Gets and sets the URL of the program's website.</summary>
<value>A <seecref="T:System.String"/> containing the URL of the program's website.</value>
<remarks>
<para>The value should be a string starting with "http://". If set, the link is displayed at the bottom of the dialog, however if <seecref="M:Gtk.AboutDialog.SetUriHook"/> has not been used, the URL will appear as plain text and not be clickable.</para>
<para>
<blocksubset="none"type="note">
<seecref="P:Gtk.AboutDialog.WebsiteLabel"/> may be used to provide a plain-text label for the link.</block>
<summary>Gets and sets the text label to display for the link to <seecref="P:Gtk.AboutDialog.Website"/>.</summary>
<value>A <seecref="T:System.String"/> containing the text label to display for the link to <seecref="P:Gtk.AboutDialog.Website"/>.</value>
<remarks>This value is used to provide a user friendly link to the website, for example <c>"Visit home page."</c> or <c>"AppName website"</c>. If not set, the link defaults to the URL specified in the <seecref="P:Gtk.AboutDialog.Website"/> property.</remarks>
<summary>Gets and sets whether the text in the <seecref="P:Gtk.AboutDialog.License"/> is to be automatically wrapped.</summary>
<value>If <seelangword="true"/>, the text is auto-wrapped. Otherwise long lines of text will extend past the edge of the frame and a horizontal scroll bar will appear.</value>
<remarks>By default, this option is set to <seelangword="false"/>. Most standard licenses, as will be found in the LICENSE file of a package, are already manually wrapped and auto-wrapping is unneccessary an unwanted.</remarks>