# 创建工具栏 toolbar = tk.Frame(master, height=30) # 创建样式 style = ttk.Style() style.configure('my.TButton', font=('Arial', 10)) # 设置鼠标悬停时的颜色 style.map('my.TButton', background=[('active', 'blue')]) # 添加占位的 Label tk.Label(toolbar).pack(side=tk.LEFT, fill=tk.X, expand=True) # 添加“查询”按钮 ttk.Button(toolbar, text="查詢", style='my.TButton', command=lambda: QueryWindow(tk.Toplevel(root))).pack( side=tk.LEFT, padx=2, pady=2) # 添加占位的 Label tk.Label(toolbar).pack(side=tk.LEFT, fill=tk.X, expand=True) # 添加“关闭”按钮 ttk.Button(toolbar, text="關閉", style='my.TButton', command=self.quit_app).pack(side=tk.LEFT, padx=2, pady=2) # 显示工具栏 toolbar.pack(side=tk.TOP, fill=tk.X)在這段代碼中添加一個文本標簽
时间: 2023-12-09 08:02:47 浏览: 132
对话框中创建工具栏.rar
你可以在工具栏中添加一个文本标签,方法如下:
```
# 添加占位的 Label
tk.Label(toolbar, text="文本标签").pack(side=tk.LEFT, padx=2, pady=2)
```
这样就可以在工具栏中添加一个文本标签了。你可以将文本标签的内容修改为你想要的文本。
阅读全文