WPF alternative for python

Is there an alternative to WPF (Windows View Basis) in python?

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

+4
source share
4 answers

Here is a list of Python GUI Toolkits .

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

+6
source

You might want to check out pygtk and glade . Here is the textbook.

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

+3
source

Try PyQt , which associates python with the QT graphics library. There are some other links at the end of this article:

  • Anygui
  • PyGTK
  • FXPy
  • Wxpython
  • win32ui
+1
source

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

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

+1
source

Source: https://habr.com/ru/post/1277409/


All Articles