增加渐变背景切换

This commit is contained in:
liufei
2022-05-09 15:25:59 +08:00
parent ed0eaee98f
commit 2d66ccf61b

17
Constant/BGStyle.cs Normal file
View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
/// <summary>
/// 背景风格
/// </summary>
namespace GeekDesk.Constant
{
public enum BGStyle
{
ImgBac = 1, //图片
GradientBac = 2 //渐变色
}
}