canvas = Canvas(root, scrollregion = (0, 0, 640, 480), bg = 'white') xscroll = ttk.Scrollbar(root, orient = HORIZONTAL, command = canvas.xview) yscroll = ttk ...
Python Tkinter question: I would like the Canvas widget to resize itself when the toplevel is resized, but I can't find any examples of how to do this. The demo canvas-with-scrollbars.py doesn't do it ...
Ink Canvas provides a simple whiteboard application built using Tkinter. It allows users to draw, write, and annotate freely on a canvas using various tools provided.
ラズパイに機器を繋げてデータを取る時、とりあえずターミナルなどに数字をずらーっと表示させます。でも数字の羅列だと特に傾向が掴みにくい。そういうのはやっぱりグラフや図形で見たいと思うわけです。 Pythonでグラフを描くライブラリは色々とあり ...