using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Io.Github.Kerwinxu.LibShapes.Core.Event { /// /// 对象被选择事件 /// public class ObjectSelectEventArgs : EventArgs { /// /// 这个被选择了 /// public Object obj { get; set; } public ObjectSelectEventArgs(Object obj) { this.obj = obj; } } }