Chapter.Net.WPF.DragAndDrop 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Chapter.Net.WPF.DragAndDrop --version 1.1.0                
NuGet\Install-Package Chapter.Net.WPF.DragAndDrop -Version 1.1.0                
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="Chapter.Net.WPF.DragAndDrop" Version="1.1.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Chapter.Net.WPF.DragAndDrop --version 1.1.0                
#r "nuget: Chapter.Net.WPF.DragAndDrop, 1.1.0"                
#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.
// Install Chapter.Net.WPF.DragAndDrop as a Cake Addin
#addin nuget:?package=Chapter.Net.WPF.DragAndDrop&version=1.1.0

// Install Chapter.Net.WPF.DragAndDrop as a Cake Tool
#tool nuget:?package=Chapter.Net.WPF.DragAndDrop&version=1.1.0                

<img src="https://raw.githubusercontent.com/dwndland/Chapter.Net.WPF.DragAndDrop/master/Icon.png" alt="logo" width="64"/>

Chapter.Net.WPF.DragAndDrop Library

Overview

Chapter.Net.WPF.DragAndDrop brings objects and helper to work with drag and drop within the WPF application.

Features

  • 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 Chapter.Net.WPF.DragAndDrop library via NuGet Package Manager:
    dotnet add package Chapter.Net.WPF.DragAndDrop
    
  2. DropItem:

    • Usage
    <ListBox AllowDrop="True">
        <chapter:Drop.DropItem>
            <chapter:DropItem DropType="Files" DragDropEffect="Copy" Command="{Binding DropFilesCommand}" />
        </chapter: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">
        <chapter:Drop.DropItems>
            <chapter:DropItemCollection>
                <chapter:DropItem DropType="File" DragDropEffect="Copy" Command="{Binding DropFileCommand}" />
                <chapter:DropItem DropType="Folder" DragDropEffect="Copy" Command="{Binding DropFolderCommand}" />
            </chapter:DropItemCollection>
        </chapter: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
        }
    }
    

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 net5.0 was computed.  net5.0-windows was computed.  net5.0-windows7.0 is compatible.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net6.0-windows7.0 is compatible.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net7.0-windows7.0 is compatible.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net8.0-windows7.0 is compatible. 
.NET Core netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.0

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.
  • net5.0-windows7.0

    • No dependencies.
  • net6.0-windows7.0

    • No dependencies.
  • net7.0-windows7.0

    • No dependencies.
  • net8.0-windows7.0

    • No dependencies.

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
2.0.0 84 6/7/2024
1.1.0 139 4/1/2024
1.0.0 486 12/24/2023