Shell32ShellAbout(IntPtr, String, String, IntPtr) Method
Displays a ShellAbout dialog box.
Namespace: DevCase.Win32.NativeMethodsAssembly: 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(
IntPtr hWnd,
string app,
string otherStuff,
IntPtr hicon
)
<DllImportAttribute("Shell32.dll", CharSet := CharSet.Unicode>]
Public Shared Function ShellAbout (
hWnd As IntPtr,
app As String,
otherStuff As String,
hicon As IntPtr
) As Boolean
Dim hWnd As IntPtr
Dim app As String
Dim otherStuff As String
Dim hicon As IntPtr
Dim returnValue As Boolean
returnValue = Shell32.ShellAbout(hWnd,
app, otherStuff, hicon)
public:
[DllImportAttribute(L"Shell32.dll", CharSet = CharSet::Unicode)]
static bool ShellAbout(
IntPtr hWnd,
String^ app,
String^ otherStuff,
IntPtr hicon
)
[<DllImportAttribute("Shell32.dll", CharSet = CharSet.Unicode)>]
static member ShellAbout :
hWnd : IntPtr *
app : string *
otherStuff : string *
hicon : IntPtr -> bool
No code example is currently available or this language may not be supported.
- hWnd IntPtr
-
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.
Boolean if successful; otherwise,
.