刚接触sciter.搜到的教程都是搭环境
我找不到sciter的UI如何与python逻辑交互
比如python里这样写:
if __name__ == '__main__': frame = sciter.Window(ismain=True, uni_theme=True) frame.load_file("minimal.html") frame.run_app()
html里这样写:
<!DOCTYPE html> <html> <head></head> <body> <input type="checkbox" name="firefox" value="">firefox ¡¡¡¡ <input type="checkbox" name="open" value="">open </body> </html>
如果firefox被选中,打开 firefox浏览器
如果open被选中,打开一个网页。
这个小例子该怎么写。如何让UI元素被选中后,Python执行操作。
另外sciter有类似api这种文档吗?(我都不知道它在python里该怎么写,有哪些函数)
谢谢
自己解决了