123456789101112131415161718192021222324252627282930 |
- using CefSharp;
- using CefSharp.Enums;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace efunbox_xyyf_windows.cusview
- {
- public class DragHandler : IDragHandler
- {
- public bool OnDragEnter(IWebBrowser browserControl, IBrowser browser, IDragData dragData, DragOperationsMask mask)
- {
- return true;// false;//throw new NotImplementedException();
- }
- public void OnDraggableRegionsChanged(IWebBrowser browserControl, IBrowser browser, IList regions)
- {
- //throw new NotImplementedException();
- }
- public void OnDraggableRegionsChanged(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IList<DraggableRegion> regions)
- {
- throw new NotImplementedException();
- }
- }
- }
|