123456789101112131415161718192021222324252627282930313233 |
- using QVCopier.Models;
- using System;
- using System.Collections.Generic;
- using System.Windows.Forms;
- namespace QVCopier
- {
- public partial class QvcMainForm : Form
- {
- //TODO: create workItem
- //TODO: list and filters
- private void MainListView_DragEnter(object sender, DragEventArgs e)
- {
- e.Effect = e.Data.GetDataPresent(DataFormats.FileDrop)
- ? DragDropEffects.Copy
- : DragDropEffects.None;
- }
- private void MainListView_DragDrop(object sender, DragEventArgs e)
- {
- var items = (string[])e.Data.GetData(DataFormats.FileDrop);
- //TODO: looking up filesystem
- foreach (var item in items)
- {
-
- }
- }
- }
- }
|