Files
webwindowconfigurator/WebWindowComplex/Compo/AreaFrame.razor
T
2026-02-18 16:41:17 +01:00

25 lines
1.1 KiB
Plaintext

<div class="card shadow-sm rounded">
<div class="card-header bg-light bg-opacity-25">
<div class="d-flex justify-content-between align-items-center mt-2">
<div class="col d-flex justify-content-between">
<h5>Area frame</h5>
</div>
<div class="col d-flex justify-content-between">
@if (SashList.Count == 0 && SplitList.Count == 0)
{
<div class="input-group mb-2 justify-content-center">
<button class="btn btn-outline-secondary btn-sm" @onclick="RaiseAddSash">Aggiungi sash</button>
</div>
}
</div>
<div class="col d-flex justify-content-between">
@if (!(CurrFrameWindow.AreaList[0] is Split))
{
<div class="input-group mb-2 justify-content-center">
<button class="btn btn-outline-secondary btn-sm" @onclick="RaiseAddSplit">Aggiungi split</button>
</div>
}
</div>
</div>
</div>
</div>