Hi,
All controls that host a popup window in NOV (including the combo box) have a
Popup property that represents the popup window shown by the control. In the case of drop down controls like the combo box this is the popup window that is shown when you click the drop down arrow button of the control. You can subscribe to the
Closed event of this popup window to get notified when it gets closed like shown in the following example:
comboBox.Popup.Closed += OnComboBoxPopupClosed;
private void OnComboBoxPopupClosed(NEventArgs arg)
{
// Your code here
}
Regarding the UI themes, you can change the
appearance of a combo box similarly to a button. You have to create the proper CSS selector that selects either the combo box or the part of it which
appearance you want to change in your theme and then add the
style definitions you want to apply. We have sent you the source code related to NOV UI themes, as well as a sample application that demonstrates how to create a custom theme based on the built
-in Windows 8 theme via email.
Best Regards,
Nevron Support Team