From 2d66ccf61bd393d24d2c47fad3c2d0fd09493cb4 Mon Sep 17 00:00:00 2001 From: liufei Date: Mon, 9 May 2022 15:25:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=B8=90=E5=8F=98=E8=83=8C?= =?UTF-8?q?=E6=99=AF=E5=88=87=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Constant/BGStyle.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Constant/BGStyle.cs 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 //渐变色 + } +}