DialogsInfoMessage(IWin32Window, String, String) Method

Shows an information message dialog with an OK button.
See the Remarks section of the InfoMessage(String) overload for more details.

Definition

Namespace: KGySoft.WinForms.Forms
Assembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
C#
public static void InfoMessage(
	IWin32Window? owner,
	string message,
	string? caption = null
)

Parameters

owner  IWin32Window
An optional window that will own the modal message dialog. If , the DialogsOwner property will be taken. If DialogsOwner is also , the currently active window will be used.
message  String
The message to display in the information dialog.
caption  String  (Optional)
The caption of the dialog. If , a localized string similar to Information will be used. This parameter is optional.
Default value: .

See Also