python Tkinter 基础添加一个按钮,在按钮上显示文字,并设置文字颜色

Posted 吴威振

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Tkinter 基础添加一个按钮,在按钮上显示文字,并设置文字颜色相关的知识,希望对你有一定的参考价值。

code;

# Tkinter 基础添加一个按钮,在按钮上显示文字,并设置文字颜色

import tkinter as tk
# 面向对象编程
class App():
    def __init__(self, master):
        frame = tk.Frame(master)  # 框架??不是很理解
        frame.pack()
        # 创建一个按钮,fg前景色:蓝色
        self.testButton = tk.Button(frame, text = "hello", fg = "blue")
        self.testButton.pack()

root = tk.Tk()
app = App(root)
root.mainloop()

结果:

 

以上是关于python Tkinter 基础添加一个按钮,在按钮上显示文字,并设置文字颜色的主要内容,如果未能解决你的问题,请参考以下文章

Python3 Tkinter基础 Menubutton 设置一个按钮 点击按钮出现下拉菜单

tkinter基础-标签按钮

你如何使用tkinter按钮重启python程序?

Python3 tkinter基础 Button command 单击按钮 在console中打印文本

Python3 tkinter基础 Tk quit 点击按钮退出窗体

Python3 Tkinter基础 点击按钮退出窗体 root.quit