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.
24 lines
651 B
24 lines
651 B
<div
|
|
ondragover="event.preventDefault();"
|
|
draggable="@(Item == null)"
|
|
@ondragstart="@OnDragStart"
|
|
@ondrop="@OnDrop"
|
|
@ondragenter="@OnDragEnter"
|
|
@ondragleave="@OnDragLeave"
|
|
@ondragend="@OnDragEnd">
|
|
|
|
@if (Item != null)
|
|
{
|
|
<div>
|
|
<img src="data:image/png;base64, @(Item.ImageBase64)" title="@Item.DisplayName" alt="@Item.DisplayName" style="min-width: 64px; max-width: 64px" />
|
|
@if (Item.Num > 0)
|
|
{
|
|
<div class="number">
|
|
@(
|
|
Item.Num
|
|
)
|
|
</div>
|
|
}
|
|
</div>
|
|
}
|
|
</div> |