web-dev-qa-db-ja.com

tkinterキャンバスを動的にウィンドウ幅にサイズ変更するにはどうすればよいですか?

Tkinterでキャンバスを取得してその幅をウィンドウの幅に設定し、ユーザーがウィンドウを小さく/大きくしたときにキャンバスのサイズを動的に変更する必要があります。

これを行う方法は(簡単に)ありますか?

30
Annonymous

Canvasに描かれたウィジェットの形状を更新する方法を扱っていないため、 @ fredtantiniの答え を展開するためのコードを追加すると思いました。

これを行うには、scaleメソッドを使用して、すべてのウィジェットにタグを付ける必要があります。完全な例を以下に示します。

from Tkinter import *

# a subclass of Canvas for dealing with resizing of windows
class ResizingCanvas(Canvas):
    def __init__(self,parent,**kwargs):
        Canvas.__init__(self,parent,**kwargs)
        self.bind("<Configure>", self.on_resize)
        self.height = self.winfo_reqheight()
        self.width = self.winfo_reqwidth()

    def on_resize(self,event):
        # determine the ratio of old width/height to new width/height
        wscale = float(event.width)/self.width
        hscale = float(event.height)/self.height
        self.width = event.width
        self.height = event.height
        # resize the canvas 
        self.config(width=self.width, height=self.height)
        # rescale all the objects tagged with the "all" tag
        self.scale("all",0,0,wscale,hscale)

def main():
    root = Tk()
    myframe = Frame(root)
    myframe.pack(fill=BOTH, expand=YES)
    mycanvas = ResizingCanvas(myframe,width=850, height=400, bg="red", highlightthickness=0)
    mycanvas.pack(fill=BOTH, expand=YES)

    # add some widgets to the canvas
    mycanvas.create_line(0, 0, 200, 100)
    mycanvas.create_line(0, 100, 200, 0, fill="red", dash=(4, 4))
    mycanvas.create_rectangle(50, 25, 150, 75, fill="blue")

    # tag all of the drawn widgets
    mycanvas.addtag_all("all")
    root.mainloop()

if __name__ == "__main__":
    main()
30
ebarr

.packジオメトリマネージャーを使用できます。

self.c=Canvas(…)
self.c.pack(fill="both", expand=True)

トリックを行う必要があります。キャンバスがフレーム内にある場合、フレームに対して同じことを行います。

self.r = root
self.f = Frame(self.r)
self.f.pack(fill="both", expand=True)
self.c = Canvas(…)
self.c.pack(fill="both", expand=True)

詳細については、 effbot を参照してください。

編集:「フルサイズの」キャンバスが必要ない場合は、キャンバスを関数にバインドできます。

self.c.bind('<Configure>', self.resize)

def resize(self, event):
    w,h = event.width-100, event.height-100
    self.c.config(width=w, height=h)

イベントとバインディングについては、再度 effbot を参照してください

12
fredtantini