# Drag Region

用户提供的“拖动区域”用于移动无框架窗口 同时在其他地方保持正常的鼠标按下/移动事件。这大致 复制“-webkit拖动区域”。

import webview

html = """
<head>
    <style type="text/css">
        .pywebview-drag-region {
            width: 50px;
            height: 50px;
            margin-top: 50px;
            margin-left: 50px;
            background: orange;
        }
    </style>
</head>
<body>
    <div class="pywebview-drag-region">Drag me!</div>
</body>
"""

if __name__ == '__main__':
    window = webview.create_window(
        'API example',
        html=html,
        frameless=True,
        easy_drag=False,
    )
    webview.start()