
бритва:
Код: Выделить всё
HTML5
Drop Zone 1
Drop Zone 2
@context.Name
@code {
private void ItemUpdated(MudItemDropInfo dropItem)
{
dropItem.Item.Identifier = dropItem.DropzoneIdentifier;
}
private List _items = new()
{
new DropItem(){ Name = "Drag me!", Identifier = "Drop Zone 1" },
new DropItem(){ Name = "Or me!", Identifier = "Drop Zone 2" },
new DropItem(){ Name = "Just Mud", Identifier = "Drop Zone 1" },
};
public class DropItem
{
public string Name { get; init; }
public string Identifier { get; set; }
}
}
Код: Выделить всё
.html5
{
user-select: none;
width: 25%;
min-height: 6.5em;
margin: 1rem 0 0 1rem;
background-color: green;
color:white;
border-radius: 0.75em;
padding:4%;
touch-action:none;
}