Skip to content

Commit 425338c

Browse files
authored
feat(WinBox): add background color variable (#4699)
* doc: 更新示例 * chore: bump version 9.0.1 * chore: bump version 9.0.2
1 parent 6a0e155 commit 425338c

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
44
<IsWebProject>true</IsWebProject>
@@ -64,7 +64,7 @@
6464
<PackageReference Include="BootstrapBlazor.TagHelper" Version="9.0.0" />
6565
<PackageReference Include="BootstrapBlazor.Topology" Version="9.0.0" />
6666
<PackageReference Include="BootstrapBlazor.VideoPlayer" Version="9.0.0" />
67-
<PackageReference Include="BootstrapBlazor.WinBox" Version="9.0.0" />
67+
<PackageReference Include="BootstrapBlazor.WinBox" Version="9.0.2" />
6868
<PackageReference Include="Longbow.Logging" Version="9.0.0" />
6969
<PackageReference Include="Longbow.Tasks" Version="9.0.0" />
7070
</ItemGroup>

src/BootstrapBlazor.Server/Components/Components/CustomWinBoxContent.razor

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
<Button Text="Stack" OnClickWithoutRender="StackWinBox"></Button>
99
<Button Text="Minimize" OnClickWithoutRender="MinWinBox"></Button>
1010
<Button Text="Maximize" OnClickWithoutRender="MaxWinBox"></Button>
11-
<Button Text="Restore" OnClickWithoutRender="RestoreWinBox"></Button>
11+
<Button Text="Restore" OnClickWithoutRender="RestoreWinBox" class="me-2"></Button>
1212
}
13+
1314
<Button Text="SetTitle" OnClickWithoutRender="SetTitleWinBox"></Button>
14-
<Button Text="SetIcon" OnClickWithoutRender="SetIconWinBox"></Button>
15+
<Button Text="SetIcon" OnClickWithoutRender="SetIconWinBox" class="me-2"></Button>
1516
<WinBoxCloseButton />
1617
</div>

src/BootstrapBlazor/Directory.Build.props

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,6 @@
7171
<PackageReference Include="Microsoft.Extensions.Localization" Version="$(NET9Version)" />
7272
</ItemGroup>
7373

74-
<ItemGroup>
75-
</ItemGroup>
76-
7774
<ItemGroup>
7875
<SupportedPlatform Include="browser" />
7976
</ItemGroup>

0 commit comments

Comments
 (0)