Click or drag to resize
IMessageBox Interface
The interface for an object that can show a modal message to the user.

Namespace: VirtualRadar.Interface
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface IMessageBox
Methods
  NameDescription
Public methodShow(String)
Shows a message to the user.
Public methodShow(String, String)
Shows a message with a title to the user.
Public methodShow(String, String, MessageBoxButtons, MessageBoxIcon, MessageBoxDefaultButton)
Shows a message with a title and a set of choices to the user. Returns the choice selected by the user.
Top
Remarks
Wraps the WinForms MessageBox static class so that it can be abstracted away in environments that do not have WinForms available to them.
See Also