Draggable borderless window in CefSharp
I want to implement borderless window with drag logic on some HTML element. I found some working examples (like frameless window for Chrome ) and this is what I've tried: .title-area { -webkit-app-region: drag; } <div class='title-area'> A draggable area </div> Then, in C# code I've implemented IDragHandler class: internal class PromtDragHandler : IDragHandler { bool IDragHandler.OnDragEnter(IWebBrowser browserControl, IBrowser browser, IDragData dragData, DragOperationsMask mask) { return false; } void IDragHandler.OnDraggableRegionsChanged(IWebBrowser browserControl, IBrowser browser, IList