kettlepot
kettlepot

Reputation: 11011

Glossy buttons in wxPython?

alt text http://imgkk.com/i/Fmtd8B.jpg

This is how they look in vista. They are glossier than the normal buttons and when the mouse is not over them they are flat. They have a correspondent version on Windows XP. Is there a way to get them using wxPython?

Upvotes: 0

Views: 1142

Answers (2)

user172340
user172340

Reputation:

Get the wxpython docs package from http://www.wxpython.org/download.php and check out the examples.

Andrea Gavana's agw library, which is included with wxpython now, has a couple of custom widgets called AquaButton and Gradient button both which look very nice. These may work or you may be able to adapt them to suit, they're pure python so you shouldn't have hard time modifying them.

Upvotes: 1

Anurag Uniyal
Anurag Uniyal

Reputation: 88855

You can always make a custom button which can look same or better see my answer to your other question Custom Button

Upvotes: 1

Related Questions