IManagementUIService.ShowError(Exception, String, String, Boolean) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Exibe a exceção especificada e informações sobre a exceção em uma caixa de mensagem.
public:
void ShowError(Exception ^ exception, System::String ^ message, System::String ^ caption, bool isWarning);
public void ShowError (Exception exception, string message, string caption, bool isWarning);
abstract member ShowError : Exception * string * string * bool -> unit
Parâmetros
- message
- String
Uma mensagem a exibir que fornece informações sobre a exceção.
- caption
- String
A legenda da caixa de mensagem.
- isWarning
- Boolean
true
se a mensagem de erro deve ser considerada um aviso; caso contrário, false
.
Exemplos
O exemplo a seguir implementa esse método.
private IWin32Window DialogOwner {
get {
return _curWin.Peek();
}
}
void IManagementUIService.ShowError(
Exception exception,
string message,
string caption,
bool isWarning) {
string text = message;
if (exception != null) {
if (!String.IsNullOrEmpty(text)) {
text += Environment.NewLine + Environment.NewLine;
}
text += exception.Message;
}
MessageBoxIcon icon = isWarning ? MessageBoxIcon.Warning : MessageBoxIcon.Error;
ShowMessage(DialogOwner,
_owner.Title, // member var init in MyUI_Srvc ctor
caption,
text,
icon, // Warning | Error
MessageBoxButtons.OK,
MessageBoxDefaultButton.Button1);
}
internal DialogResult ShowMessage(
IWin32Window owner,
string appTitle,
string caption, string text,
MessageBoxIcon icon,
MessageBoxButtons buttons,
MessageBoxDefaultButton defaultButton) {
if (String.IsNullOrEmpty(caption)) {
caption = appTitle;
}
MessageBoxOptions options = (MessageBoxOptions)0;
if ((owner is Control && owner != null &&
((Control)owner).RightToLeft == RightToLeft.Yes) ||
_rightToLeft) {
options |= MessageBoxOptions.RtlReading |
MessageBoxOptions.RightAlign;
}
return MessageBox.Show(owner, text, caption,
buttons, icon, defaultButton, options);
}