You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
607 B
28 lines
607 B
@page "/example-tab-set"
|
|
|
|
<TabSet>
|
|
<Tab Title="First tab">
|
|
<h4>Greetings from the first tab!</h4>
|
|
|
|
<label>
|
|
<input type="checkbox" @bind="showThirdTab" />
|
|
Toggle third tab
|
|
</label>
|
|
</Tab>
|
|
|
|
<Tab Title="Second tab">
|
|
<h4>Hello from the second tab!</h4>
|
|
</Tab>
|
|
|
|
@if (showThirdTab)
|
|
{
|
|
<Tab Title="Third tab">
|
|
<h4>Welcome to the disappearing third tab!</h4>
|
|
<p>Toggle this tab from the first tab.</p>
|
|
</Tab>
|
|
}
|
|
</TabSet>
|
|
|
|
@code {
|
|
private bool showThirdTab;
|
|
} |