66 questions
I'm creating a Windows app UI in Python.The module used is Tkinter.By default, the radio button display is very small, so I want to make it bigger, but I don't know what to do.If anyone knows, could y...
I was able to draw the graph using the code below, but I couldn't find a way to change the range of the x and y axes after that, so please let me know.import numpy as npimport matplotlib.pyplot aspltf...
What can I do if I want to remove the function that I am updating canvas by entering it from the button?def update(): canvas.after(10, update)to a function similar to the one shown in if (button press...
I want to run the command when I erase the Toplevel window.In the tk.Tk() window, you can overwrite _del__, but if you do so in Toplevel, it will run when the main window is turned off.I think it's ok...
I just started programming.You can display windows and combo boxes, but when you select items in the combo box, you get an error.Below is the bit device type acquisition part.I've tried many things, b...
PrerequisitesTkinter uses Canvas and Scrollbar to create a list box with Checkbutton.What do you want to doI'd like to expand the scrollbar range.Currently, scrolling works only if there is a cursor o...
When I connected vnc from win10 to ubuntu18.04 LTS, I received the following error:root@kawasakih2sx-desktop:/home/takumii/ss #python test2.pyNo protocol specifiedNo protocol specifiedTraceback (most ...
In tkinter, when creating 18 figures, I would like to create variables that accompany objects for management purposes, objects 0 to 17.Therefore, we thought about using the count variable i to assign ...
class WidgetsDemo: def __init__(self): window=Tk() window.title (Widget Demo) self.button = [[0 for col in range(5)] for row in range(8)] for self.i in range(0,8): for self.j in range(0,5): sel...
« | - 4 - | » |
© 2024 OneMinuteCode. All rights reserved.