ViewAttachedEventArgs.cs 425 B

12345678910111213141516171819
  1. namespace Caliburn.Micro.Core {
  2. using System;
  3. /// <summary>
  4. /// The event args for the <see cref="IViewAware.ViewAttached"/> event.
  5. /// </summary>
  6. public class ViewAttachedEventArgs : EventArgs {
  7. /// <summary>
  8. /// The view.
  9. /// </summary>
  10. public object View;
  11. /// <summary>
  12. /// The context.
  13. /// </summary>
  14. public object Context;
  15. }
  16. }