The UltraColorPicker comes with three tabs: Custom, Web and System. Is there a way to get rid of the System tab? We feel this is extraneous in our project and potentially confusing to the end user. Unfortunatley, we do not have access to Infragistics source code.
I'm just starting Infragistics, so any help is appreciated.
Thanks.
Hey Matt,
I wanted to get rid of the System tab in the ultracolorpicker. Does the 2009 version have the necessary fixes I am trying to disable it since it is very confusing for the end user.
Please let me know if it is fixed
You should Submit a feature request to Infragistics, too.
I don't think that there's an easy way to do this, since the tabs are all generated by a protected instance of the TabbedColorPicker class. I think that you'd have to derive a separate control and editor and then iterate through the controls collection to find the TabbedColorPicker, then hide the tabs. An easier approach would be to get the Editor property of the color picker and cast it to a ColorPickerEditor, then use reflection to get the TabbedColorPicker property, from which you can do the same thing mentioned above.
-Matt