using System; namespace Terminal.Gui { /// /// Args for events that relate to specific /// public class GrabMouseEventArgs : EventArgs { /// /// Creates a new instance of the class. /// /// The view that the event is about. public GrabMouseEventArgs (View view) { View = view; } /// /// The view that the event is about. /// public View View { get; } /// /// Flag that allows the cancellation of the event. If set to in the /// event handler, the event will be canceled. /// public bool Cancel { get; set; } } }