2

I want to use win 7 style file chooser in python. This is the same question like: Does Swing support Windows 7-style file choosers? just in PYTHON.
I tried Tkinter, easygui but both of them looks like this:

Annoying old style file chooser

But I prefer this dialog: Preferred dialog

python-course.eu mentions that Tkinter's look and feel depends on the system, but I try this and its dialog has the old style on win 7.
More detail: http://www.python-course.eu/tkinter_dialogs.php

Thanks Benedek

Community
  • 1
  • 1
betontalpfa
  • 3,454
  • 1
  • 33
  • 65
  • related: [Does Python have a cross-platform GUI toolkit that uses native widgets?](http://stackoverflow.com/q/3718878/4279) – jfs Sep 01 '15 at 09:25

1 Answers1

1

PyQt and/or PySide can do that. Here's a shot of a Qt file dialog in Windows 7. Note the custom icon, window title, and file format filter (*.txt):

.

101
  • 8,514
  • 6
  • 43
  • 69