Files
webwindowconfigurator/WebWindowComplex/Compo/AreaFrame.razor
T
Annamaria Sassi e68847318f - Aggiornato readme
- Piccole correzioni
2025-10-23 09:50:12 +02: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">
<div class="col d-flex justify-content-between">
<h5>Area frame</h5>
</div>
<div class="col d-flex justify-content-between">
@if (CurrSashList.Count == 0 && CurrSplitList.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>