tkinter中多页面跳转
时间: 2023-08-03 15:08:02 浏览: 150
python3.5 tkinter实现页面跳转
5星 · 资源好评率100%
在Tkinter中实现多页面的跳转可以使用两种常见的方法:使用多个Frame控件或使用ttk.Notebook控件。下面分别介绍这两种方法的实现步骤。
**方法一:使用多个Frame控件**
1. 首先,创建一个主窗口和多个页面对应的Frame控件。
```python
import tkinter as tk
root = tk.Tk()
frame1 = tk.Frame(root)
frame2 = tk.Frame(root)
frame3 = tk.Frame(root)
frame1.pack()
```
2. 在每个Frame控件中添加对应页面的内容。
```python
# 在frame1中添加页面1的内容
label1 = tk.Label(frame1, text="Page 1")
label1.pack()
# 在frame2中添加页面2的内容
label2 = tk.Label(frame2, text="Page 2")
label2.pack()
# 在frame3中添加页面3的内容
label3 = tk.Label(frame3, text="Page 3")
label3.pack()
```
3. 创建函数用于切换页面,该函数将隐藏其他页面的Frame控件并显示当前页面的Frame控件。
```python
def show_frame(frame):
frame.pack()
frame.tkraise()
# 初始显示第一个页面
show_frame(frame1)
```
4. 创建按钮或其他触发事件的控件,并绑定对应的函数来切换页面。
```python
button1 = tk.Button(root, text="Page 1", command=lambda: show_frame(frame1))
button1.pack()
button2 = tk.Button(root, text="Page 2", command=lambda: show_frame(frame2))
button2.pack()
button3 = tk.Button(root, text="Page 3", command=lambda: show_frame(frame3))
button3.pack()
```
**方法二:使用ttk.Notebook控件**
1. 首先,创建一个主窗口和一个ttk.Notebook控件。
```python
import tkinter as tk
from tkinter import ttk
root = tk.Tk()
notebook = ttk.Notebook(root)
notebook.pack()
```
2. 在ttk.Notebook控件中添加多个页面,并为每个页面设置对应的内容。
```python
# 添加第一个页面并设置内容
frame1 = ttk.Frame(notebook)
notebook.add(frame1, text="Page 1")
label1 = tk.Label(frame1, text="Page 1")
label1.pack()
# 添加第二个页面并设置内容
frame2 = ttk.Frame(notebook)
notebook.add(frame2, text="Page 2")
label2 = tk.Label(frame2, text="Page 2")
label2.pack()
# 添加第三个页面并设置内容
frame3 = ttk.Frame(notebook)
notebook.add(frame3, text="Page 3")
label3 = tk.Label(frame3, text="Page 3")
label3.pack()
```
3. 使用`notebook.select()`方法可以设置初始显示的页面。
```python
# 初始显示第一个页面
notebook.select(frame1)
```
4. 创建按钮或其他触发事件的控件,并绑定对应的函数来切换页面。
```python
button1 = tk.Button(root, text="Page 1", command=lambda: notebook.select(frame1))
button1.pack()
button2 = tk.Button(root, text="Page 2", command=lambda: notebook.select(frame2))
button2.pack()
button3 = tk.Button(root, text="Page 3", command=lambda: notebook.select(frame3))
button3.pack()
```
以上就是在Tkinter中实现多页面跳转的两种常见方法。你可以根据自己的需求选择其中一种方法来实现多页面的切换。
阅读全文