Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 wxpython 开发一个 GUI,我可以在其中输入不同格式的信息,例如 textctrl、spinctrl、复选框等。我可以将所有这些条目写入和写入注册表,除了复选框。如果有人能告诉我我该怎么做就太好了?提前致谢。
要读取和写入 Windows 注册表,通常的方法是使用 Python _winreg 模块。我只需将 EVT_CHECKBOX 绑定到处理程序,然后使用 IsChecked() 方法查看它是否被检查。根据返回的内容,您可以使用上述模块将 1 或 0(或 True/False)写入注册表。
以下是 _winreg 上的几个链接: