RSK
RSK

Reputation: 17516

should not access parent frame untill closes the child?

I have two frames one parent and child. the parent will invoke the child.

The program should not allow the user to access the parent until the user closes the child

How can i achive it?

Need a solution without hiding the parent

Upvotes: 1

Views: 109

Answers (1)

balpha
balpha

Reputation: 50898

See the wx.Window.MakeModal() method (Frame inherits from Window).

Upvotes: 2

Related Questions