PyCharm 中 ttkbootstrap bootstyle 参数出现意外参数

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

使用 ttkbootstrap 的 bootstyle 参数时,我在 PyCharm 中收到“意外参数”警告。

以下代码有效,但我无法修复警告。

import ttkbootstrap as ttk
from ttkbootstrap.constants import *

root = ttk.Window()

b1 = ttk.Button(root, text="Button 1", bootstyle=SUCCESS)
b1.pack(side=LEFT, padx=5, pady=10)

b2 = ttk.Button(root, text="Button 2", bootstyle=(INFO, OUTLINE))
b2.pack(side=LEFT, padx=5, pady=10)

root.mainloop()
python tkinter pycharm ttkbootstrap
1个回答
0
投票

像这样使用样式。 pycharm 中没有警告,并且像魅力一样工作:

    b1 = ttk.Button(root, text="Button 1", style=SUCCESS)
    b1.pack(side=LEFT, padx=5, pady=10)

    b2 = ttk.Button(root, text="Button 2", style=f'{INFO},{OUTLINE}')
    b2.pack(side=LEFT, padx=5, pady=10)

    b3 = ttk.Button(root, text="Button 2", style=f'{TTK_DEFAULT}, {OUTLINE}')
    b3.pack(side=LEFT, padx=5, pady=10)
© www.soinside.com 2019 - 2024. All rights reserved.