I am building a c# winform app and the framework I inherited uses UI Controls from this library LumiSoft These seem fine but aged and buggy. The previous developer preferred them for the smaller sizes they allowed. I recently discovered these controls for free as well: DevExpress These are much newer and more full featured.
My question’s are thus:
- What if any are the downfalls to having TWO ui controls attached to my project?
- Is it worth my time to replace all Lumisoft with the DevExpress?
- What are peoples general feelings towards using UI Library’s like DevExpress?
1) The downside here is that you end up distributing more assemblies and so taking up a larger hard drive footprint because you are using two sets of controls that are likely to overlap in functionality. Depending on your application and target users this might or might not be an issue. Second is the problem of keeping the user interface consistent. If both libraries offer an Office 2007 look and feel they might not match in colors exactly and so your application could look inconsistent.
2) Only you can know if the time it would take is worthwhile for your project. Take into account that replacing a control with another from a different vendor is unlikely to be a simple renaming of the control class. They probably have a different set of properties and so you need to spend time modifying the code so it compiles again and then retesting to ensure it works as expected. Unless your customers are demanding a change then it is unlikely to be worth the effort compared to the same time spent adding new features.
3) Unless you have a very trivial application you are almost certain to save time using a component library instead of writing everything yourself. This is why Infragistics, DevExpress, ComponentOne and many other vendors make a nice living from component marketplace. Plus then tend to keep their libraries up to date with the latest look and feel which makes it easier to update your own application to mimic that same appearance.
N.B There is another free control library called Krypton Toolkit but in the interests of disclosure I would point out that I wrote it myself! So I am biased in recommending it.