Base List ControlSub Controls Refreshed Event
This event is raised when the sub-controls of the list control are refreshed after it has changed in
some way that affects them.
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public event EventHandler SubControlsRefreshedVB
Public Event SubControlsRefreshed As EventHandlerC++
public:
event EventHandler^ SubControlsRefreshed {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}F#
member SubControlsRefreshed : IEvent<EventHandler,
EventArgs>Value
EventHandlerRemarks
This event can be handled to do such things as reload the column collection with your
preferred defaults, adjust the radio button controls, etc. See the RefreshSubControls
method in the derived classes for more information.