在python中,使用tkinter创建两个gui页面,并且这两个gui页面分别在两个py文件中
时间: 2024-05-22 12:13:30 浏览: 144
python 使用tkinter创建GUI 示例
回答:可以使用tkinter库在python中创建GUI界面。创建两个GUI页面可以在两个不同的python文件中编写代码并运行。可以使用以下代码在两个不同的文件中创建两个GUI界面:
# 在 first_gui.py 文件中编写代码
from tkinter import *
class FirstGUI:
def __init__(self, master):
self.master = master
self.master.title("第一个 GUI 界面")
self.frame = Frame(self.master)
self.frame.pack()
# 在 second_gui.py 文件中编写代码
from tkinter import *
class SecondGUI:
def __init__(self, master):
self.master = master
self.master.title("第二个 GUI 界面")
self.frame = Frame(self.master)
self.frame.pack()
注意:以上代码只是一个简单的演示,实际使用过程中可能需要添加更多的代码来实现具体的功能。
阅读全文