In our product we have some buttons in the RadTabControl.AdditionalContent.
These buttons can not be found by UI automation tool, also checking with Inspect.Objects these button and the AdditionalContent are not found.
Is this supported by Telerik or do we do something wrong.
We are running on Windows 7, using telerik WPF version Wpf.40.2014.2.0729.
Snapshot of the code:
<telerik:RadTabControl.AdditionalContent >
<StackPanel Grid.Row="2" Margin="10,2" Orientation="Horizontal" HorizontalAlignment="Right">
<!-- Help -->
<Button Name="btnHelp"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Margin="0,0,10,0"
Command="{Binding Path=ShowHelpCommand}"
Style="{StaticResource HelpButtonStyle}"
Visibility="{Binding HelpButtonVisibility}"
ToolTip="{Binding Source={x:Static frameworkResources:XmlTextProvider.Content},XPath=Help/@Header}" />
<!-- Logout -->
<Button Name="btnLogout"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Margin="0,0,0,0"
Command="{Binding Path=LogoutCommand}"
Style="{StaticResource LogOutButtonStyle}"
ToolTip="{Binding Source={x:Static frameworkResources:XmlTextProvider.Content},XPath=Logout/@Header}" />
</StackPanel>
</telerik:RadTabControl.AdditionalContent>