Messages, Notifications, Log, Exceptions, Translation
Translation guideline
throw new Exception(l.Translate("Mehrwertsteuer Array konnte nicht berechnet werden."));xMessageBox.Show(l.Translate("Gebinde nicht vorhanden),....);Yes/No
answer = xMessageBox.Show(l.Translate("Gebinde nicht vorhanden. Soll es erstellt werden?"), "Abfrage", MessageBoxButton.YesNo);
if (answer == MessageBoxResult.Yes)
{
//Create container
this.CreateGebinde(gebindeNr);
return;
}LoggerSink
LoggerSink [deprecated]Exceptions
Last updated