ChecklistCombobox 在 python 中给出错误

问题描述 投票:0回答:1

我尝试在 Python 3.12 中使用 ChecklistCombobox 库,但在运行时出现错误

    cb = ChecklistCombobox(root,values=('1', '2', '3', '4'))
         ^^^^^^^^^^^^^^^^^
NameError: name 'ChecklistCombobox' is not defined

我是Python新手

请发送带有复选框的组合框的完整代码

python
1个回答
0
投票

使用前导入模块

import ChecklistCombobox

然后就可以使用了

cb = ChecklistCombobox(root, values=('1', '2', '3', '4'))

如果出现错误:

No module named ChecklistCombobox
使用pip安装它

pip install ChecklistCombobox
© www.soinside.com 2019 - 2024. All rights reserved.