Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 790487
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T21:41:23+00:00 2026-05-14T21:41:23+00:00

How do I drag a item out of a Winforms-listview control onto another control

  • 0

How do I drag a item out of a Winforms-listview control onto another control (picture of trash can)?

UPDATE1:

I think the basic flow is:

  • for the ItemDrag event on the listview have a DoDragDrop
  • Then have a DragEnter event on the picturebox that captures that drag?

UPDATE2:

The basic flow (based on answers):

  • add ‘ItemDrag’ event to the listview.
  • add a ‘DoDragDrop’ inside the ‘ItemDrag’
  • add ‘DragEnter’ event to the picturebox.
  • add a ‘GetDataPresent’ check inside the ‘DragEnter’ to check on the data type
  • add a ‘DragDrop’ event to the picturebox
  • add a ‘GetDataPresent’ check inside the ‘DragEnter’ to check on the data type
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T21:41:23+00:00Added an answer on May 14, 2026 at 9:41 pm

    Implement an event handler for the list view’s ItemDrag event:

        private void listView1_ItemDrag(object sender, ItemDragEventArgs e) {
            DoDragDrop(e.Item, DragDropEffects.Move);
        }
    

    And write the event handlers for the trash can:

        private void trashCan_DragEnter(object sender, DragEventArgs e) {
            if (e.Data.GetDataPresent(typeof(ListViewItem))) {
                e.Effect = DragDropEffects.Move;
            }
            // others...
        }
    
        private void trashCan_DragDrop(object sender, DragEventArgs e) {
            if (e.Data.GetDataPresent(typeof(ListViewItem))) {
                var item = e.Data.GetData(typeof(ListViewItem)) as ListViewItem;
                item.ListView.Items.Remove(item);
            }
            // others...
        }
    

    You’ll have to force the AllowDrop property for the PictureBox, it isn’t available in the Properties window:

        public Form1() {
            InitializeComponent();
            trashCan.AllowDrop = true;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We're trying to figure out how to drag an item from a LibraryStack container
I have a tab control which allows me to drag the tab items out
I have several sortable lists connected together, so I can drag one item from
I'm unable to figure out how to select an item programmatically in a ListView.
When I drag an item to a list the following jQuery is executed except
I've got a WinForm where the user has the ability to drag an item
I'm trying to implement drag/drop/sort between 2 list elements: <ul id=first> <li>item 1</li> <li>item
My Problem: The sortable event out: fires when I drag something in the list
I drag out a toolbaritem in storyboard and set it on my nav controller,
how can i get the ID from the current Draggabe Item? <style type=text/css> .red{

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.