MVVMbasics Logo

mobilemotion.eu Logo


Back to Class Reference home page


MVVMbasics.Services
Class MessageboxService

MVVMbasics.Services.IMessageboxService
  implemented by 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

Show

public void Show(string message)

Shows a message box containing a specified message.

Parameters:

message - Message to be displayed.


Show

public void Show(string message, string title)

Shows a message box containing a specified message and a specified title.

Parameters:

message - Message to be displayed.
title - Title to be displayed.