/// <summary> /// Invocator for <see cref="ExplorerError"/> event. /// </summary> /// <param name="e"></param> private void InvokeExplorerError(ExplorerErrorEventArgs e) { EventHandler <ExplorerErrorEventArgs> handler = ExplorerError; if (handler != null) { handler(this, e); } }
private void Explorer_ExplorerError(object sender, ExplorerErrorEventArgs e) { MessageDialog.Show(e.Exception.Message); }