马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 Daniel_Zhang 于 2020-12-19 00:50 编辑
在 macOS 上使用 tkinter 的时候发现一件很神奇的事情,不论 button 的 bg 设置成什么,都无法更改 button 的背景颜色。逐字逐句照着小甲鱼老师的视频敲的,相信在 win 上面运行良好
代码如下:
import tkinter as tk
class APP:
def __init__(self, master):
frame = tk.Frame(master)
frame.pack(side=tk.LEFT, padx = 20, pady = 10)
self.hi_there = tk.Button(frame, text='Hello!', bg = 'black', fg = 'blue', command=self.say_hi)
self.hi_there.pack()
def say_hi(self):
print("Hello everyone, I am a python file!:)")
root = tk.Tk()
app = APP(root)
root.mainloop()
在几经周折之后(Google还是大佬太多),找到了一个解决办法,提供给各位使用 macOS 的小白
import tkinter as tk
from tkmacosx import Button as button
class APP:
def __init__(self, master):
frame = tk.Frame(master)
frame.pack(side=tk.LEFT, padx = 20, pady = 10)
self.hi_there = button(frame, text='Hello!', bg = 'black', fg = 'white', command=self.say_hi)
self.hi_there.pack()
def say_hi(self):
print("Hello everyone, I am a python file!:)")
root = tk.Tk()
app = APP(root)
root.mainloop()
在 macOS 里面,需要增加一个额外的 tkmacos 模块 来解决该问题
暂时不确定是否是个例(package 漏掉了或是其他原因)
p.s 2行和8行进行了改动 |