Hi,
We have a custom usercontrol which has been constructed by inheriting the UserControl class. The user control allows scrolling. Now since it is a windows based control so we are unable to style the scrollbars like the ones in the infragistic controls using the appstylist.
Do we have some base class from infragistics which we can inherit instead of the UserControl class, so that the good looking scrollbars appear. Or do we have some workaround related to this using the inboxControlStyler, etc. through which we can style the scrollbar.
Thanks
Puneet Keshav
Hi Puneet,
What I would do is derive from Control (instead of UserControl) and the put an UltraPanel on the control which is Docked to Fill for the Scrollbars.
I derived my user control directly from the UltraPanel and did not have any major problems in converting. Thanks for the attention.