15 lines
515 B
Plaintext
15 lines
515 B
Plaintext
<button @onclick="()=>scanB()">Scan Dir New</button>
|
|
<div class="d-flex justify-content-evenly p-3" style="min-height: 50rem;">
|
|
|
|
<div class="col-5 border border-dark" style="min-height: 40rem;">
|
|
@if (tempDOT != null)
|
|
{
|
|
@foreach (var item in tempDOT)
|
|
{
|
|
<div>@($"{Path.GetFileName(item.OpCode)} {item.status} {item.FileMD5}")</div>
|
|
}
|
|
}
|
|
</div>
|
|
<div class="col-5 border border-dark" style="min-height: 40rem;">
|
|
</div>
|
|
</div> |