예제 #1
0
 public void ShowInformation(string message, string caption)
 {
     ShowInformationRequests.Add(new MessageBoxRequest {
         Message = message, Caption = caption
     });
 }
예제 #2
0
 public void ShowInformation(string message)
 {
     ShowInformationRequests.Add(new MessageBoxRequest {
         Message = message
     });
 }