diff --git a/README.md b/README.md index e564888..2f560dc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,126 @@ # how-to-delete-a-dragging-item-after-dropping-it-to-a-specific-view-in-.net-maui-listview. + This example demonstrates about how to delete a dragging item after dropping it into a specific view in .NET MAUI ListView (SfListView). + +## XAML + + + + + --- + + --- + + + + + + + + + + + + + + + + + + + + + + + + + + + +## C# + + public class Behavior : Behavior + { + SfListView ListView; + Label headerLabel; + StackLayout Stack; + Label deleteLabel; + protected override void OnAttachedTo(ContentPage bindable) + { + ListView = bindable.FindByName("listView"); + headerLabel = bindable.FindByName