OneCore.Net.WPF.DragAndDrop 1.0.1

dotnet add package OneCore.Net.WPF.DragAndDrop --version 1.0.1
                    
NuGet\Install-Package OneCore.Net.WPF.DragAndDrop -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OneCore.Net.WPF.DragAndDrop" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OneCore.Net.WPF.DragAndDrop" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="OneCore.Net.WPF.DragAndDrop" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OneCore.Net.WPF.DragAndDrop --version 1.0.1
                    
#r "nuget: OneCore.Net.WPF.DragAndDrop, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package OneCore.Net.WPF.DragAndDrop@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OneCore.Net.WPF.DragAndDrop&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=OneCore.Net.WPF.DragAndDrop&version=1.0.1
                    
Install as a Cake Tool

OneCore

OneCore.Net.WPF.DragAndDrop Library

Overview

OneCore.Net.WPF.DragAndDrop is a library that provides objects and helpers to simplify implementing drag-and-drop functionality in WPF applications.

Features

  • DragItem: Allow drag selected item(s) or data context from any control.
  • DropItem: Allow drop of a particular type of files to a target controls.
  • DropItems: Allow drop of one or more particular types of items to a target control.

Getting Started

  1. Installation:

    • Install the OneCore.Net.WPF.DragAndDrop library via NuGet Package Manager:
    dotnet add package OneCore.Net.WPF.DragAndDrop
    
  2. DropItem:

    • Usage
    <ListBox AllowDrop="True">
        <onecore:Drop.DropItem>
            <onecore:DropItem Drops="Files" Effect="Copy" Command="{Binding DropFilesCommand}" />
        </onecore:Drop.DropItem>
    </ListBox>
    
    public void DemoViewModel : ObservableObject
    {
        public DemoViewModel()
        {
            DropFilesCommand = new DelegateCommand<ItemsDroppedArgs>(DropFiles);
        }
    
        public IDelegateCommand DropFilesCommand { get; }
    
        private void DropFiles(ItemsDroppedArgs e)
        {
            //e.Items[]
        }
    }
    
  3. DropItems:

    • Usage
    <ListBox AllowDrop="True">
        <onecore:Drop.DropItems>
            <onecore:DropItemCollection>
                <onecore:DropItem Drops="File" Effect="Copy" Command="{Binding DropFileCommand}" />
                <onecore:DropItem Drops="Folder" Effect="Copy" Command="{Binding DropFolderCommand}" />
            </onecore:DropItemCollection>
        </onecore:Drop.DropItems>
    </ListBox>
    
    public void DemoViewModel : ObservableObject
    {
        public DemoViewModel()
        {
            DropFileCommand = new DelegateCommand<ItemDroppedArgs>(DropFile);
            DropFolderCommand = new DelegateCommand<ItemDroppedArgs>(DropFolder);
        }
    
        public IDelegateCommand DropFileCommand { get; }
        public IDelegateCommand DropFolderCommand { get; }
    
        private void DropFile(ItemDroppedArgs e)
        {
            //e.Item
        }
    
        private void DropFolder(ItemDroppedArgs e)
        {
            //e.Item
        }
    }
    
  4. DragItem:

    • Usage
    <ListBox>
        <onecore:Drag.DragItem>
            <onecore:DropItem Drags="SelectedItem" Effect="Copy" Format="SelectedItem" />
        </onecore:Drag.DragItem>
    </ListBox>
    
    <ListBox AllowDrop="True">
        <onecore:Drop.DropItem>
            <onecore:DropItem Drops="Custom" Effect="Copy" Format="SelectedItem" Command="{Binding DropItemCommand}" />
        </onecore:Drop.DropItem>
    </ListBox>
    
    public void DemoViewModel : ObservableObject
    {
        public DemoViewModel()
        {
            DropItemCommand = new DelegateCommand<CustomDroppedArgs>(DropItem);
        }
    
        public IDelegateCommand DropItemCommand { get; }
    
        private void DropItem(CustomDroppedArgs e)
        {
            //e.Item
        }
    }
    

License

Copyright (c) David Wendland. All rights reserved. Licensed under the MIT License. See LICENSE file in the project root for full license information.

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 185 11/5/2025
1.0.0 256 10/23/2025