New to Telerik UI for WinFormsStart 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

WinForms RadDataFilter Custom Display Names

PropertyDisplayNameNeeded Event

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

See Also

In this article
See Also
Not finding the help you need?
Contact Support