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

  • Home
  • SEARCH
  • 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
Just trying to drag my first Menu control onto a WPF application in VS2010.
How would I drag and drop something into a static control? It looks like
I would like to drag and drop my data file onto a Python script
When I drag a control from the toolbox on to the Visual Studio 2008
My Problem: The sortable event out: fires when I drag something in the list
I have a row where I can drag items into it, and sort them.
When I drag & drop a dll to the assembly folder on vista, I
I'm trying to drag a CALayer in an iOS app. As soon as I
When I drag a link that is inside a draggable div over an iframe

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.