Skip to content

Commit 3e598ba

Browse files
committed
1.2.0.5
1 parent 1dac683 commit 3e598ba

7 files changed

Lines changed: 54 additions & 2 deletions
-88.2 KB
Binary file not shown.
88.3 KB
Binary file not shown.

Blazor.WebForm.Components/Blazor.WebForm.Components.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net5.0</TargetFramework>
55
<SignAssembly>true</SignAssembly>
66
<AssemblyOriginatorKeyFile>Blazor.WebForm.Components.pfx</AssemblyOriginatorKeyFile>
7-
<Version>1.2.0.3</Version>
7+
<Version>1.2.0.5</Version>
88
<RootNamespace>asp</RootNamespace>
99
<Copyright>Jurio li</Copyright>
1010
<AssemblyName>Blazor.WebForm.Components</AssemblyName>
@@ -17,7 +17,7 @@
1717

1818
<ItemGroup>
1919
<PackageReference Include="Applied" Version="1.2.1.6" />
20-
<PackageReference Include="Blazor.WebForm.UI" Version="1.2.0.3" />
20+
<PackageReference Include="Blazor.WebForm.UI" Version="1.2.0.5" />
2121
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.10" />
2222
</ItemGroup>
2323

Blazor.WebForm.Components/CheckBox.razor

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,19 @@
7373
}
7474
}
7575

76+
[Parameter]
77+
public LabelMode LabelMode
78+
{
79+
get
80+
{
81+
return this.Control.LabelMode;
82+
}
83+
set
84+
{
85+
this.Control.LabelMode = value;
86+
}
87+
}
88+
7689
[Parameter]
7790
public string ValidationGroup
7891
{

Blazor.WebForm.Components/CheckBoxList.razor

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,19 @@
2121
}
2222
}
2323

24+
[Parameter]
25+
public LabelMode LabelMode
26+
{
27+
get
28+
{
29+
return this.Control.LabelMode;
30+
}
31+
set
32+
{
33+
this.Control.LabelMode = value;
34+
}
35+
}
36+
2437
[Parameter]
2538
public RepeatLayout RepeatLayout
2639
{

Blazor.WebForm.Components/RadioButton.razor

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,19 @@
7373
}
7474
}
7575

76+
[Parameter]
77+
public LabelMode LabelMode
78+
{
79+
get
80+
{
81+
return this.Control.LabelMode;
82+
}
83+
set
84+
{
85+
this.Control.LabelMode = value;
86+
}
87+
}
88+
7689
[Parameter]
7790
public string ValidationGroup
7891
{

Blazor.WebForm.Components/RadioButtonList.razor

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,19 @@
2121
}
2222
}
2323

24+
[Parameter]
25+
public LabelMode LabelMode
26+
{
27+
get
28+
{
29+
return this.Control.LabelMode;
30+
}
31+
set
32+
{
33+
this.Control.LabelMode = value;
34+
}
35+
}
36+
2437
[Parameter]
2538
public RepeatLayout RepeatLayout
2639
{

0 commit comments

Comments
 (0)