IconStartType.cs 409 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. /// <summary>
  7. /// 图标应用启动方式
  8. /// </summary>
  9. namespace GeekDesk.Constant
  10. {
  11. public enum IconStartType
  12. {
  13. DEFAULT_STARTUP = 1, //默认启动方式
  14. ADMIN_STARTUP = 2, //管理员方式启动
  15. SHOW_IN_EXPLORE = 3 //打开文件所在位置
  16. }
  17. }