├── .gitignore ├── CefSharpDraggableRegion.sln ├── CefTest ├── CefSharpDraggableRegion.csproj ├── ChromeWidgetMessageInterceptor.cs ├── DragDropHandler.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── html │ ├── App.config │ └── index.html └── packages.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/.gitignore -------------------------------------------------------------------------------- /CefSharpDraggableRegion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefSharpDraggableRegion.sln -------------------------------------------------------------------------------- /CefTest/CefSharpDraggableRegion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/CefSharpDraggableRegion.csproj -------------------------------------------------------------------------------- /CefTest/ChromeWidgetMessageInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/ChromeWidgetMessageInterceptor.cs -------------------------------------------------------------------------------- /CefTest/DragDropHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/DragDropHandler.cs -------------------------------------------------------------------------------- /CefTest/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/Form1.Designer.cs -------------------------------------------------------------------------------- /CefTest/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/Form1.cs -------------------------------------------------------------------------------- /CefTest/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/Form1.resx -------------------------------------------------------------------------------- /CefTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/Program.cs -------------------------------------------------------------------------------- /CefTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CefTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CefTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/Properties/Resources.resx -------------------------------------------------------------------------------- /CefTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CefTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/Properties/Settings.settings -------------------------------------------------------------------------------- /CefTest/html/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/html/App.config -------------------------------------------------------------------------------- /CefTest/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/html/index.html -------------------------------------------------------------------------------- /CefTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/CefTest/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqcode/CefSharpDraggableRegion/HEAD/README.md --------------------------------------------------------------------------------