123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Terminal.Gui {
- /// <summary>
- /// Event args for events which relate to a single <see cref="Point"/>
- /// </summary>
- public class PointEventArgs : EventArgs{
- /// <summary>
- /// Creates a new instance of the <see cref="PointEventArgs"/> class
- /// </summary>
- /// <param name="p"></param>
- public PointEventArgs (Point p)
- {
- this.Point = p;
- }
- /// <summary>
- /// The point the event happened at
- /// </summary>
- public Point Point { get; }
- }
- }
|