示例#1
0
 public void ShowErrorMessage(string message)
 {
     Debug.Assert(statusBar != null);
     statusBar.ShowErrorMessage(stringParserService.Parse(message));
 }
 public void ShowErrorFormatted(string formatstring, params string[] formatitems)
 {
     ShowError(null, String.Format(stringParserService.Parse(formatstring), formatitems));
 }