/// <summary> /// Raises the WindowCreated event /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected virtual void OnWindowCreated(object sender, WindowThreadEventArgs e) { try { if (this.WindowCreated != null) { this.WindowCreated(sender, e); } } catch (Exception ex) { Debug.WriteLine(ex); } }
/// <summary> /// Raises the WindowCreated event /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected virtual void OnWindowCreated(object sender, WindowThreadEventArgs e) { try { if (this.WindowCreated != null) this.WindowCreated(sender, e); } catch(Exception ex) { Debug.WriteLine(ex); } }