Skip to content

Commit 686f259

Browse files
committed
Merge branch 'Code-DJ-master'
2 parents e1cf9f2 + 57bb9ec commit 686f259

26 files changed

+239
-59
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,3 +330,8 @@ ASALocalRun/
330330

331331
# MFractors (Xamarin productivity tool) working folder
332332
.mfractor/
333+
334+
# macOS
335+
.DS_Store
336+
.AppleDouble
337+
.LSOverride

samples/AfterBlazorServerSide/Pages/ControlSamples/DataList/ComplexStyle.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@page "/ControlSamples/DataList/ComplexStyle"
2-
@using static System.Drawing.Color
2+
@using static BlazorWebFormsComponents.WebColor
33
@using static BlazorWebFormsComponents.Enums.BorderStyle
44

55
<h2>DataList HeaderStyle sample</h2>
@@ -11,7 +11,7 @@
1111
<DataList @ref="simpleDataList"
1212
runat="server"
1313
EnableViewState="false"
14-
BackColor="Gray"
14+
BackColor="@("#808080")"
1515
BorderColor="Firebrick"
1616
BorderStyle="Groove"
1717
BorderWidth="2"

samples/AfterBlazorServerSide/Pages/ControlSamples/DataList/HeaderStyle.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@page "/ControlSamples/DataList/HeaderStyle"
2-
@using static System.Drawing.Color
2+
@using static BlazorWebFormsComponents.WebColor
33

44
<h2>DataList HeaderStyle sample</h2>
55

@@ -27,7 +27,7 @@
2727
runat="server"
2828
EnableViewState="false"
2929
Context="Item"
30-
HeaderStyle-BackColor="Blue"
30+
HeaderStyle-BackColor="@("#C84630")"
3131
HeaderStyle-ForeColor="White"
3232
HeaderStyle-BorderColor="White"
3333
HeaderStyle-BorderStyle="Solid"

samples/AfterBlazorServerSide/Pages/ControlSamples/DataList/Index.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@page "/ControlSamples/DataList"
2-
@using static System.Drawing.Color
2+
@using static BlazorWebFormsComponents.WebColor
33

44
<h2>DataList Component homepage</h2>
55

samples/AfterBlazorServerSide/Pages/ControlSamples/Validations/RequiredFieldValidatorSample.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@page "/ControlSamples/RequiredFieldValidator"
2-
@using static System.Drawing.Color
2+
@using static BlazorWebFormsComponents.WebColor
33

44
<h3>Required Field Validator</h3>
55
@using BlazorWebFormsComponents.Validations;

samples/AfterBlazorServerSide/Pages/ControlSamples/Validations/ValidationSummarySample.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@page "/ControlSamples/ValidationSummary"
2-
@using static System.Drawing.Color
2+
@using static BlazorWebFormsComponents.WebColor
33

44
<h3>Required Field Validator</h3>
55
@using BlazorWebFormsComponents.Validations;

src/BlazorWebFormsComponents.Test/DataList/FlowLayout/HeaderStyle.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@inherits TestComponentBase
2-
@using static System.Drawing.Color
2+
@using static BlazorWebFormsComponents.WebColor
33
@using static BlazorWebFormsComponents.Enums.BorderStyle
44
@using BlazorWebFormsComponents
55

src/BlazorWebFormsComponents.Test/DataList/FlowLayout/HeaderStyleCss.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@inherits TestComponentBase
2-
@using static System.Drawing.Color
2+
@using static BlazorWebFormsComponents.WebColor
33
@using static BlazorWebFormsComponents.Enums.BorderStyle
44
@using BlazorWebFormsComponents
55

src/BlazorWebFormsComponents.Test/DataList/FlowLayout/HeaderStyleFont.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@inherits TestComponentBase
2-
@using static System.Drawing.Color
2+
@using static BlazorWebFormsComponents.WebColor
33
@using static BlazorWebFormsComponents.Enums.BorderStyle
44
@using BlazorWebFormsComponents
55

src/BlazorWebFormsComponents.Test/DataList/FlowLayout/InlineHeaderStyle.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@inherits TestComponentBase
2-
@using static System.Drawing.Color
2+
@using static BlazorWebFormsComponents.WebColor
33

44

55
<Fixture Test="FirstTest">

0 commit comments

Comments
 (0)