Back to Class Reference home page
MVVMbasics.Services.IMessageboxService
MVVMbasics.Services.MessageboxService
[MvvmService]
public class MessageboxService : IMessageboxService
Service which allows showing alerts on the user interface through message box popups.
Method Summary | |
---|---|
void |
Show(string message)
Shows a message box containing a specified message. |
void |
Show(string message, string title)
Shows a message box containing a specified message and a specified title. |
Method Detail |
---|
public void Show(string message)
Shows a message box containing a specified message.
message
- Message to be displayed.
public void Show(string message, string title)
Shows a message box containing a specified message and a specified title.
message
- Message to be displayed.
title
- Title to be displayed.