ControlAttributeEvent.cs 477 B

123456789101112131415161718
  1. //############################################################
  2. // https://github.com/yuzhengyang
  3. // author:yuzhengyang
  4. //############################################################
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace Y.Utils.ReflectionUtils.AttributeUtils
  11. {
  12. public enum ControlAttributeEvent
  13. {
  14. Click, //单击事件
  15. DbClick, //双击事件
  16. }
  17. }