diff --git a/Constant/BGStyle.cs b/Constant/BGStyle.cs new file mode 100644 index 0000000..fedb370 --- /dev/null +++ b/Constant/BGStyle.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +/// +/// 背景风格 +/// +namespace GeekDesk.Constant +{ + public enum BGStyle + { + ImgBac = 1, //图片 + GradientBac = 2 //渐变色 + } +}