New to Telerik UI for WPF? Start a free 30-day trial
Data Validation Lost on Switch Tabs
Updated on Mar 17, 2026
Environment
| Product Version | 2019.2.510 |
| Product | RadTabControl for WPF |
Description
The red validation border is lost when switching tabs in RadTabControl or LayoutControlTabGroup.
Solution
To resolve this, wrap the content of the corresponding tab item (RadTabItem or LayoutControlTabGroupItem) in an AdornerDecorator element.
XAML
<telerik:RadTabItem Header="Tab 1">
<AdornerDecorator>
<TextBox />
</AdornerDecorator>
</telerik:RadTabItem>