Is there a way to change the font of the dropdown of an UltraCombo?. Setting the font affected the input area, but the dropdown still has the default formatting.
Thanks!
Is there a way to change the font of the dropdown of an UltraCombo?. Setting the font affected the input area, but the dropdown still has the default formatting.
Thanks!
I ended up doing this - not sure if it’s right, but it works well
private void cbPN_BeforeDropDown(object sender, System.ComponentModel.CancelEventArgs args)
{
// ** Place Event Handling Code Here **
cbPN.DisplayLayout.Appearance.FontData.SizeInPoints = 16;
}
It uses infragistics and all of the infragistics control “Looks” are managed via the appearance class. It’s a royal pain in the ass. You have to manage the individual cell, row or column appearance.