1

I am wondering how you can define a click event handler to destroy a window in Ironpython using xaml. The Tkinter command is:

self.Parent.destroy()
Hamid K
  • 983
  • 1
  • 18
  • 40

1 Answers1

0
self.Close()

will shutdown the window and destroy it.

Hamid K
  • 983
  • 1
  • 18
  • 40