ViewEventArgs.cs 277 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Terminal.Gui{
  7. public class ViewEventArgs :EventArgs{
  8. public ViewEventArgs (View view)
  9. {
  10. View = view;
  11. }
  12. public View View { get; }
  13. }
  14. }