New to Telerik UI for WinForms? Start a free 30-day trial
Custom Display Names
Updated over 6 months ago
The names behind each of the descriptor items are extracted from the data-bound object. RadDataFilter exposes the PropertyDisplayNameNeeded event providing means for customizing the displayed name of a field.
Figure 1: Custom Display Names

PropertyDisplayNameNeeded Event
C#
private void RadDataFilter1_PropertyDisplayNameNeeded(object sender, PropertyDisplayNameNeededEventArgs e)
{
if (e.FieldName == "BirthDay")
{
e.DisplayName = "Birth Day";
}
}