New to Telerik UI for WinForms? Start a free 30-day trial
Customizing Appearance
Updated on May 7, 2026
You can access and modify the style for different elements in RadDataEntry by using the Element Hierarchy Editor.
Figure 1: Element Hierarchy Editor

Changing the styles of the underlying items and controls
The following snippet shows how you access the underlying controls and change their style:
C#
foreach (DataLayoutControlItem item in radDataLayout1.LayoutControl.Items)
{
item.ForeColor = ColorTranslator.FromHtml("#51ab2e");
if (item.AssociatedControl is RadTextBox)
{
item.AssociatedControl.BackColor = ColorTranslator.FromHtml("#91c930");
}
}Figure 2: Change the items styles
