-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathSampleList.cs
79 lines (79 loc) · 2.69 KB
/
SampleList.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#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 System.Collections.Generic;
namespace Blazor_MAUI_Demos
{
internal partial class SampleConfig
{
public List<Sample> ProgressBar { get; set; } = new List<Sample>{
new Sample
{
Name = "Linear",
Category = "Progress Bar",
Directory = "ProgressBar/ProgressBar",
Url = "progress-bar/linear",
FileName = "Linear.razor",
Type = SampleType.None,
},
new Sample
{
Name = "Circular",
Category = "Progress Bar",
Directory = "ProgressBar/ProgressBar",
Url = "progress-bar/circular",
FileName = "Circular.razor",
Type = SampleType.None
},
new Sample
{
Name = "Angle",
Category = "Progress Bar",
Directory = "ProgressBar/ProgressBar",
Url = "progress-bar/angle",
FileName = "Angle.razor",
Type = SampleType.None
},
new Sample
{
Name = "Labels",
Category = "Progress Bar",
Directory = "ProgressBar/ProgressBar",
Url = "progress-bar/labels",
FileName = "Labels.razor",
Type = SampleType.None
},
new Sample
{
Name = "Radius",
Category = "Progress Bar",
Directory = "ProgressBar/ProgressBar",
Url = "progress-bar/radius",
FileName = "Radius.razor",
Type = SampleType.None
},
new Sample
{
Name = "Stripes",
Category = "Progress Bar",
Directory = "ProgressBar/ProgressBar",
Url = "progress-bar/stripes",
FileName = "Stripes.razor",
Type = SampleType.None
},
new Sample
{
Name = "Progress Segment",
Category = "Progress Bar",
Directory = "ProgressBar/ProgressBar",
Url = "progress-bar/progress-segment",
FileName = "ProgressSegment.razor",
Type = SampleType.None
}
};
}
}