Focus
3/30/23Less than 1 minute
Focus
Create a non-focusable window that can be useful for onscreen floating tools.
import webview
if __name__ == '__main__':
webview.create_window(
'Nonfocusable window',
html='<html><head></head><body><p>You shouldnt be able to type into this window...</p><input type="text"><p>...but still you can click elements in this window...</p><input type="checkbox"></body></html>',
focus=False,
)
webview.start()