Python Forum
[PyQt] remove widgets of a layout
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[PyQt] remove widgets of a layout
#1
i have some problem deleting widgets from the layout:
I used the removeItem() function but the widgets are still there:
def clearlayout(layout):
    for i in reversed(range(layout.count())):
        print(layout.itemAt(i))
        layout.itemAt(i).setParent(None)
        layout.removeItem(layout.itemAt(i))
        layout.itemAt(i).show()
the files are here:
https://1drv.ms/u/s!Ag-Rb-LqQZYuiB0SfkDA...s?e=1zKCKZ
(GUI.py is the executable file)

when you are running the 'GUI.py' you need to delete or change the cmd code part:
#Convert ui to py with PowerShell and reload##########################################
command1='cd \\\\filestore.soton.ac.uk\\users\\jy1u18\\mydesktop\\QT'
command2='pyuic5 try.ui -o first.py'
powershellcmd=subprocess.Popen(['powershell.exe',command1],stdout=sys.stdout)
powershellcmd.communicate()
powershellcmd=subprocess.Popen(['powershell.exe',command2],stdout=sys.stdout)
powershellcmd.communicate()
importlib.reload(first)
######################################################################################
the code is not complete yet.
I want to change the labels and lineedits shown in the layout when choosing different circuits from the menubar 'circuits'
the code is not complete yet. only 'C' and 'R' are available. 'C' only run the clearlayout function 'R' runs the function and add new widgets onto it.
Reply


Messages In This Thread
remove widgets of a layout - by catlessness - Apr-02-2020, 05:40 PM
RE: remove widgets of a layout - by deanhystad - Apr-02-2020, 07:20 PM
RE: remove widgets of a layout - by catlessness - Apr-02-2020, 07:25 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Bug [PyQt] Dinamically adding widgets to layout [PySide6] carecavoador 2 1,475 Jun-19-2023, 12:57 PM
Last Post: carecavoador
  [Tkinter] Frames layout adding widgets klatlap 7 2,062 Jan-29-2022, 10:17 PM
Last Post: klatlap
  pyqt5 layout Nickd12 8 3,520 Jan-18-2021, 09:09 AM
Last Post: Axel_Erfurt
  Python GUI layout off between different OS shift838 5 3,730 Jan-02-2019, 02:53 AM
Last Post: shift838
  clear all widgets at same time (not delete/remove) shift838 0 2,765 Dec-17-2018, 11:55 PM
Last Post: shift838
  [Tkinter] grid layout neech 8 17,695 Oct-14-2016, 07:06 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020