|
<SfListBox Value=@Value DataSource="@Data" TValue="string[]" TItem="DataValues" AllowDragAndDrop="true">
<ListBoxFieldSettings Text="Text" Value="Id"></ListBoxFieldSettings>
<ListBoxEvents DragStart="DragStart" Dropped="Dropped" TValue="string[]" TItem="DataValues"></ListBoxEvents>
</SfListBox>
@code
{
private void DragStart(DragEventArgs<DataValues> args)
{
}
private void Dropped(DragEventArgs<DataValues> args)
{
}
} |