BGStyle.cs 301 B

1234567891011121314151617
  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 BGStyle
  12. {
  13. ImgBac = 1, //图片
  14. GradientBac = 2 //渐变色
  15. }
  16. }