QvcMainForm.MainLV.cs 375 B

1234567891011121314151617181920
  1. using QVCopier.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Windows.Forms;
  5. namespace QVCopier
  6. {
  7. public partial class QvcMainForm : Form
  8. {
  9. private void MainListView_DragEnter(object sender, DragEventArgs e)
  10. {
  11. }
  12. private void MainListView_DragDrop(object sender, DragEventArgs e)
  13. {
  14. }
  15. }
  16. }