Aggiornata grafica
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="col-md-12 col-lg-6">
|
||||
<div class="input-group mb-2">
|
||||
<label class="input-group-text">Shape</label>
|
||||
<select class="form-select" @bind="@CurrItem.SelSplitShapeIndex">
|
||||
@@ -49,7 +49,7 @@
|
||||
<div class="row">
|
||||
@if (CurrItem.nSplitQtyVert > 0)
|
||||
{
|
||||
<div class="col-sm-6">
|
||||
<div class="col-md-12 col-lg-6">
|
||||
<div class="input-group mb-2">
|
||||
<span class="input-group-text">QtyVert</span>
|
||||
<input type="number" class="form-control" @bind="@CurrItem.nSplitQtyVert">
|
||||
@@ -58,7 +58,7 @@
|
||||
}
|
||||
@if (CurrItem.nSplitQtyHoriz > 0)
|
||||
{
|
||||
<div class="col-sm-6">
|
||||
<div class="col-md-12 col-lg-6">
|
||||
<div class="input-group mb-2">
|
||||
<span class="input-group-text">QtyHoriz</span>
|
||||
<input type="number" class="form-control" @bind="@CurrItem.nSplitQtyHoriz">
|
||||
@@ -69,7 +69,7 @@
|
||||
<div class="row">
|
||||
@if (CurrItem.SplitVertList.Count > 0 && CurrItem.SplitHorizList.Count > 0)
|
||||
{
|
||||
<div class="col-sm-6">
|
||||
<div class="col-md-12 col-lg-6">
|
||||
@foreach (var dim in CurrItem.SplitVertList)
|
||||
{
|
||||
<div class="input-group mb-2">
|
||||
@@ -79,7 +79,7 @@
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="col-md-12 col-lg-6">
|
||||
@foreach (var dim in CurrItem.SplitHorizList)
|
||||
{
|
||||
<div class="input-group mb-2">
|
||||
@@ -94,7 +94,7 @@
|
||||
{
|
||||
@foreach (var dim in CurrItem.SplitHorizList)
|
||||
{
|
||||
<div class="col-sm-6">
|
||||
<div class="col-md-12 col-lg-6">
|
||||
<div class="input-group mb-2">
|
||||
<span class="input-group-text">Height</span>
|
||||
<input type="number" class="form-control" @bind="@dim.dDimension">
|
||||
@@ -107,7 +107,7 @@
|
||||
{
|
||||
@foreach (var dim in CurrItem.SplitVertList)
|
||||
{
|
||||
<div class="col-sm-6">
|
||||
<div class="col-md-12 col-lg-6">
|
||||
<div class="input-group mb-2">
|
||||
<span class="input-group-text">Width</span>
|
||||
<input type="number" class="form-control" @bind="@dim.dDimension">
|
||||
@@ -120,7 +120,7 @@
|
||||
@if (CurrItem.SelSplitShape == Json.WindowConst.SplitShapes.GRID)
|
||||
{
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="col-md-12 col-lg-6">
|
||||
<div class="d-flex justify-content-start fs-5 mb-2">
|
||||
<div class="px-1">
|
||||
<input class="form-check-input ml-auto" type="checkbox" name="SplitStartVert" checked="@CurrItem.bSplitStartVert" @oninput="(ChangeEventArgs e) => ChangeStartVert(e, CurrItem)">
|
||||
|
||||
Reference in New Issue
Block a user