Skip to content

Commit a2d7cd6

Browse files
authored
Merge pull request #17 from HTMLElements/SupportCases
support demos init
2 parents 12c1797 + 3b1f69a commit a2d7cd6

File tree

4,673 files changed

+694073
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,673 files changed

+694073
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"ExpandedNodes": [
3+
"",
4+
"\\Pages",
5+
"\\Properties"
6+
],
7+
"SelectedNode": "\\johnNewReleaseTest.csproj",
8+
"PreviewInSolutionExplorer": false
9+
}

SupportDemos/BlazorWASM/GanttLimitSelectionToOneTaskOnly/.vs/johnNewReleaseTest/config/applicationhost.config

Lines changed: 1025 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="@true">
2+
<Found Context="routeData">
3+
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
4+
</Found>
5+
<NotFound>
6+
<LayoutView Layout="@typeof(MainLayout)">
7+
<p>Sorry, there's nothing at this address.</p>
8+
</LayoutView>
9+
</NotFound>
10+
</Router>
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
namespace Framework
2+
{
3+
//Colour Difference Formula objects
4+
public class CDF
5+
{
6+
public string illuminant { get; set; }
7+
public string observer { get; set; }
8+
public string primary { get; set; }
9+
public string textile { get; set; }
10+
public string source1 { get; set; }
11+
public string notation1 { get; set; }
12+
public string source2 { get; set; }
13+
public string notation2 { get; set; }
14+
public string sample1 { get; set; }
15+
public string sample2 { get; set; }
16+
public double CIE94 { get; set; }
17+
public double CIED2000 { get; set; }
18+
public double CIELab { get; set; }
19+
public double CIELuv { get; set; }
20+
public double CMC { get; set; }
21+
public double DIN99 { get; set; }
22+
public double FMC1 { get; set; }
23+
public double FMC2 { get; set; }
24+
public double HunterLab { get; set; }
25+
public string status { get; set; }
26+
27+
public CDF()
28+
{
29+
notation1 = "";
30+
notation2 = "";
31+
CIE94 = 0;
32+
CIED2000 = 0;
33+
CIELab = 0;
34+
CIELuv = 0;
35+
CMC = 0;
36+
DIN99 = 0;
37+
FMC1 = 0;
38+
FMC2 = 0;
39+
HunterLab = 0;
40+
}
41+
}
42+
43+
public class CDF2
44+
{
45+
public string Colour1 { get; set; }
46+
public string Colour2 { get; set; }
47+
48+
public CDF2()
49+
{
50+
Colour1 = "#FFFFFF";
51+
Colour2 = "#000000";
52+
}
53+
}
54+
}

0 commit comments

Comments
 (0)