跳转至

0.0.9

版本0.0.9更新!

新增

ToolTip 工具提示

FluToolTip截图

在这个版本中,我添加了一个新的小部件 -> FluToolTip

你可以这样使用

tooltip1 = FluToolTip(master, text="One useful tooltip")
or 或者
widget.tooltip(text="One useful tooltip")

示例

from tkflu import *


root = FluWindow()

thememanager = FluThemeManager(root, mode="light")

button = FluButton(root, text="Click me", command=lambda: print("Clicked"), style="standard")
button.pack()

tooltip = FluToolTip(button, text="This is a tooltip")

root.mainloop()