views:

1365

answers:

4

Is there any alternative for WPF (windows presentation foundation) in python?

http://msdn.microsoft.com/en-us/library/aa970268.aspx#Programming_with_WPF

+3  A: 

You might want to look at pygtk and glade. Here is a tutorial.

There is a long list of alternatives on the Python Wiki.

David Schmitt
+3  A: 

Here is a list of Python GUI Toolkits.

Also, you can use IronPython to work with WPF directly.

Timothy Lee Russell
oooh, slick! IronPython++
David Schmitt
IronPython is tha thing you're looking for, no question about it
Shimmy
A: 

Try PyQt which binds python to QT graphics library. There are some other links at the end of that article:

  • Anygui
  • PyGTK
  • FXPy
  • wxPython
  • win32ui
gbjbaanb
+1  A: 

If you are on Windows and you want to use WPF (as opposed to an alternative), you can use it with IronPython - a .NET version of python.

Here's a quick example: http://stevegilham.blogspot.com/2007/07/hello-wpf-in-ironpython.html

Moe