gpt4 book ai didi

python - 当大内容放置在同一行时防止小部件移动

转载 作者:行者123 更新时间:2023-12-01 04:37:39 24 4
gpt4 key购买 nike

我正在用 Python 编写一个程序,处理一些数据,然后使用 Canvas 在同一个 tkinter 窗口中输出结果的绘图

我的问题是我需要将 Canvas 与某些Label放在同一行;由于 Canvas 很大,所以会使行展开,标签会被下推,界面看起来不太好。

这是程序界面的截图:

enter image description here

标签和 Canvas 都放置在同一行。当单击check按钮时, Canvas 将显示,行将展开,标签将被下推,如下截图所示:

enter image description here

这是代码,

import matplotlib
matplotlib.use('TkAgg')
import numpy as np
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
from matplotlib.figure import Figure
from Tkinter import *

class mclass:
def __init__(self, window):
self.window = window
self.box = Entry(window)
self.button = Button (window, text="check", command=self.plot)
self.plotlabel= Label (window, text="The following is the plot")
self.box.grid (row=1, column=1)
self.button.grid(row=2, column= 1)
self.plotlabel.grid (row=3, column=1)
def plot (self):
x=np.array ([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
v= np.array ([16,16.31925,17.6394,16.003,17.2861,17.3131,19.1259,18.9694,22.0003,22.81226])
p= np.array ([16.23697, 17.31653, 17.22094, 17.68631, 17.73641 , 18.6368,
19.32125, 19.31756 , 21.20247 , 22.41444 , 22.11718 , 22.12453])

fig = Figure(figsize=(6,6))
a = fig.add_subplot(111)
a.scatter(v,x,color='red')
a.plot(p, range(2 +max(x)),color='blue')
a.invert_yaxis()

a.set_title ("Estimation Grid", fontsize=16)
a.set_ylabel("Y", fontsize=14)
a.set_xlabel("X", fontsize=14)

canvas = FigureCanvasTkAgg(fig, master=self.window)
canvas.get_tk_widget().grid(row=3, column= 2)
canvas.draw()

window= Tk()
start= mclass (window)
window.mainloop()

如何在不按下标签的情况下显示 Canvas ?我四处搜寻,但找不到类似的问题。另外,我尝试过 grid 方法中的 rowspan,但它没有解决问题。

最佳答案

最简单的解决方案是同时使用 pack 和 grid。使用 pack 将框架放置在主窗口的左侧。该框架将包含所有按钮和输入小部件。使用 pack 将另一个框架放置在主窗口的右侧。这将包含您的情节。

接下来,您可以使用 pack 或 grid 将按钮或小部件放置在左侧框架中。您在正确的框架中执行的任何操作都不会影响这些小部件的位置。

最后,使用 pack 或 grid 将 Canvas 放入正确的框架中。您在此处所做的任何操作都不会影响您的按钮和其他小部件。

关于python - 当大内容放置在同一行时防止小部件移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31460429/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com