Shell32ShellAbout(SafeHandle, String, String, IntPtr) Method

Displays a ShellAbout dialog box.

Definition

Namespace: DevCase.Win32.NativeMethods
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Shell32.dll", CharSet = CharSet.Unicode)]
public static bool ShellAbout(
	SafeHandle hWnd,
	string app,
	string otherStuff,
	IntPtr hicon
)

Parameters

hWnd  SafeHandle
A window handle to a parent window. This parameter can be Zero.
app  String
A pointer to a null-terminated string that contains text to be displayed in the title bar of the ShellAbout dialog box and on the first line of the dialog box after the text "Microsoft".

If the text contains a separator char (#) that divides it into two parts, the function displays the first part in the title bar and the second part on the first line after the text "Microsoft".

otherStuff  String
A pointer to a null-terminated string that contains text to be displayed in the dialog box after the version and copyright information. This parameter can be String.
hicon  IntPtr
The handle of an icon that the function displays in the dialog box.

This parameter can be Zero, in which case the function displays the Windows icon.

Return Value

Boolean
if successful; otherwise, .

Remarks

See Also