Skip to content

Commit cf1f533

Browse files
committed
1.1.8.3
1 parent 4428a2e commit cf1f533

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

-86.7 KB
Binary file not shown.
86.8 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.1.8.2</Version>
7+
<Version>1.1.8.3</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.5" />
20-
<PackageReference Include="Blazor.WebForm.UI" Version="1.1.8.2" />
20+
<PackageReference Include="Blazor.WebForm.UI" Version="1.1.8.3" />
2121
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.8" />
2222
</ItemGroup>
2323

Blazor.WebForm.Components/MultiView.razor

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
@using System.Web.UI
44
@using System.Web.UI.WebControls
55
@inherits ControlComponentBase<System.Web.UI.WebControls.MultiView>
6-
@this.RenderWithCascading(this.Control, this.ChildContent)
6+
@this.RenderWithCascading(this.Control, this.ChildContent, this.ChildLevel)
77
@code {
88
[Parameter]
99
public RenderFragment ChildContent { get; set; }
1010

11+
[Parameter]
12+
public int ChildLevel { get; set; } = 1;
13+
1114
[Parameter]
1215
public int ActiveViewIndex
1316
{

0 commit comments

Comments
 (0)