Esempio n. 1
0
        public void ShowException(Exception exception)
        {
            LayoutHelper.InvokeFromUiThread(() =>
            {
#if SILVERLIGHT
                ExceptionDialog.ShowError(exception);
#else
                throw new NotImplementedException();
#endif
            });
        }
Esempio n. 2
0
        public void ShowError(string message)
        {
            LayoutHelper.InvokeFromUiThread(() =>
            {
#if SILVERLIGHT
                ExceptionDialog.ShowDialog(message);
#else
                throw new NotImplementedException();
#endif
            });
        }