Skip to content

Commit d1e2326

Browse files
committed
Merge branch 'master' of git://github.com/Code-DJ/BlazorWebFormsComponents into Code-DJ-master
2 parents e1cf9f2 + 04e2b80 commit d1e2326

File tree

22 files changed

+228
-48
lines changed

22 files changed

+228
-48
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

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">

src/BlazorWebFormsComponents.Test/DataList/FlowLayout/ItemStyle.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">

src/BlazorWebFormsComponents.Test/DataList/TableLayout/ComplexStyle.razor

Lines changed: 2 additions & 2 deletions
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

@@ -10,7 +10,7 @@
1010
CellSpacing="2"
1111
CellPadding="3"
1212
RepeatLayout="Table"
13-
BackColor="Red"
13+
BackColor="@("#ff0000")"
1414
Context="Item">
1515
<HeaderTemplate>My Widget List</HeaderTemplate>
1616
<ItemTemplate>@Item.Name</ItemTemplate>

0 commit comments

Comments
 (0)