Reputation: 81
I have an old Delphi app that i want to upgrade to delphi xe (always win 32). Another request is to review a little bit the GUI to make it a little more "WPF like"
Is there any skinning tool out there or any tecnique you'll suggest to helo in doing that?
Upvotes: 2
Views: 2741
Reputation: 4357
The current Delphi Version (XE2) has a new framework called FireMonkey. This is vector based and uses hardware acceleration. You can also use skins with firemonkey.
Upvotes: 0
Reputation: 11050
If you need just to make your applications looks different and modern without modifying the code, you can use skinning library like VCLSkin, which will make your applications looks attractive with just one component dropped on your application.
but if you can replace your standard Delphi components with more advanced one, you can use library like VGScense which will make your application more like WPF looks
Upvotes: 1