Home
Forums
New posts
Search forums
What's new
New posts
Latest activity
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Home
Forums
All Topics
Programming/Internet
requiero visitar cada pestaña del notebook y apagar cada entry
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="juanb" data-source="post: 740139"><p>un saludo. Creo que es algo sencillo pero no logro hacerlo. Necesito visitar cada pestaña del notebook y si el widget contenido alli es un ttk.entry, deshabilitarlo.</p><p></p><p>nota: al interior de cada pestaña hay muchos mas widget, pero para efectos de resumir y presentar el problema, coloco un código sencillo.</p><p></p><p>Mi código que no funciona es este.</p><p></p><p>[CODE]from tkinter import *</p><p>from tkinter import ttk</p><p></p><p>formulario = Tk()</p><p>formulario.geometry("500x400+200+200")</p><p></p><p># crea el notebook</p><p>mp = ttk.Notebook(formulario, width=350, height=250)</p><p>pag1 = Frame(mp, bg='blue')</p><p>pag2 = Frame(mp, bg='red')</p><p>mp.add(pag1, text='compra')</p><p>mp.add(pag2, text='venta')</p><p>mp.place(x=25,y=25)</p><p></p><p># crea los cajones</p><p>cajon1 = ttk.Entry(pag1)</p><p>cajon1.pack()</p><p>cajon2 = ttk.Entry(pag2)</p><p>cajon2.pack()</p><p></p><p># recorre cada página del notebook y si encuentra un entry lo deshabilita</p><p>w: ttk.Widget</p><p>for i in mp.tabs(): #recorre cada pestaña del notebook</p><p> for w in mp.tab(i).winfo_children(): #recorre cada widget dentro de la página</p><p> if w.winfo_class() == "TEntry": #verifica si es un entry</p><p> w.state(["disabled"]) #lo apaga</p><p></p><p>formulario.mainloop()</p><p>[/CODE]</p></blockquote><p></p>
[QUOTE="juanb, post: 740139"] un saludo. Creo que es algo sencillo pero no logro hacerlo. Necesito visitar cada pestaña del notebook y si el widget contenido alli es un ttk.entry, deshabilitarlo. nota: al interior de cada pestaña hay muchos mas widget, pero para efectos de resumir y presentar el problema, coloco un código sencillo. Mi código que no funciona es este. [CODE]from tkinter import * from tkinter import ttk formulario = Tk() formulario.geometry("500x400+200+200") # crea el notebook mp = ttk.Notebook(formulario, width=350, height=250) pag1 = Frame(mp, bg='blue') pag2 = Frame(mp, bg='red') mp.add(pag1, text='compra') mp.add(pag2, text='venta') mp.place(x=25,y=25) # crea los cajones cajon1 = ttk.Entry(pag1) cajon1.pack() cajon2 = ttk.Entry(pag2) cajon2.pack() # recorre cada página del notebook y si encuentra un entry lo deshabilita w: ttk.Widget for i in mp.tabs(): #recorre cada pestaña del notebook for w in mp.tab(i).winfo_children(): #recorre cada widget dentro de la página if w.winfo_class() == "TEntry": #verifica si es un entry w.state(["disabled"]) #lo apaga formulario.mainloop() [/CODE] [/QUOTE]
Name
Verification
Post reply
Home
Forums
All Topics
Programming/Internet
requiero visitar cada pestaña del notebook y apagar cada entry
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.
Accept
Learn more…
Top