“Usuń zawartość z formularza wejścia w Python Tkinter” Kod odpowiedzi

Jak usunąć wpis tkinter

import tkinter as tk

class App(tk.Frame):
    def __init__(self, master):
        tk.Frame.__init__(self, master, height=42, width=42)
        self.entry = tk.Entry(self)
        self.entry.focus()
        self.entry.pack()
        self.clear_button = tk.Button(self, text="Clear text", command=self.clear_text)
        self.clear_button.pack()

    def clear_text(self):
        self.entry.delete(0, 'end')

def main():
    root = tk.Tk()
    App(root).pack(expand=True, fill='both')
    root.mainloop()

if __name__ == "__main__":
    main()

Usuń zawartość z formularza wejścia w Python Tkinter

import tkinter as tk
#You can use the function as reset buttton 
def deleteEntry ():
  yourEntryName.delete(0,'end') #first=0 to last=end 
Black Bee

Odpowiedzi podobne do “Usuń zawartość z formularza wejścia w Python Tkinter”

Pytania podobne do “Usuń zawartość z formularza wejścia w Python Tkinter”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu