Hi Friends,

I am writing a application that clears the added controls every 200 ms.

- I have used QTimer for the timer.
- I have used "QGraphicsProxyWidget" for adding the widgets(some pushbutton etc) on the "QGraphicsView"

Now I want to clear the widgets at every timer instance as I got the updated data for the "QGraphicsView".

I have used widget visibility concept to do this ("isVisible"), But I got crashes and incorrect results.

Is there any way to clear all the added widgets from the QGraphicsProxyWidget.

How to clear added widgets from "QGraphicsProxyWidget".