Files
GeekDesk/ViewModel/Temp/GradientBGParamList.cs

36 lines
982 B
C#
Raw Normal View History

using System.Collections.ObjectModel;
2022-05-10 15:33:06 +08:00
namespace GeekDesk.ViewModel.Temp
{
public class GradientBGParamList
{
private static ObservableCollection<GradientBGParam> gradientBGParams;
static GradientBGParamList()
{
//gradientBGParams = (ObservableCollection<GradientBGParam>)ConfigurationManager.GetSection("SystemBGs")
gradientBGParams = new ObservableCollection<GradientBGParam>
{
new GradientBGParam("魅惑妖术", "#FFDDE1", "#EE9CA7"),
new GradientBGParam ("森林之友", "#EBF7E3", "#A8E4C0"),
new GradientBGParam("完美谢幕", "#D76D77", "#FFAF7B")
2022-05-10 15:33:06 +08:00
};
}
public static ObservableCollection<GradientBGParam> GradientBGParams
{
get
{
return gradientBGParams;
}
set
{
gradientBGParams = value;
}
}
2022-05-10 15:33:06 +08:00
}
}