-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathSamplesConfiguration.cs
48 lines (44 loc) · 1.72 KB
/
SamplesConfiguration.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#region Copyright Syncfusion® Inc. 2001-2025.
// Copyright Syncfusion® Inc. 2001-2025. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// licensing@syncfusion.com. Any infringement will be prosecuted under
// applicable laws.
#endregion
using Syncfusion.DemosCommon.WinUI;
using System;
using System.Collections.Generic;
namespace Syncfusion.ShadowDemos.WinUI
{
public class SamplesConfiguration
{
public SamplesConfiguration()
{
DemoInfo shadowDemo = new DemoInfo()
{
Name = "Getting Started",
Category = "Shadow",
Description = "Shadow control is used to apply the shadow effects to any framework element to display with a beautiful and attractive UI.",
DemoView = typeof(Views.Shadow.ShadowView),
DemoType = DemoTypes.None,
ShowInfoPanel = false,
};
var shadow = new ControlInfo()
{
Control = DemoControl.SfShadow,
ControlCategory = ControlCategory.Miscellaneous,
ControlBadge = ControlBadge.None,
Description = "Shadow control is used to apply the shadow effects to any framework element to display with a beautiful and attractive UI.",
Glyph = "\ue722",
ImageSource = "Shadow.png",
IsPreview = false,
};
shadow.Demos.Add(shadowDemo);
var controlInfos = new List<ControlInfo>()
{
shadow,
};
DemoHelper.ControlInfos.AddRange(controlInfos);
}
}
}