Hi
we are using telerik tab control for wpf, with dropdown visible option. but problem is that It trims the items text if we don't provide a width. or if e provide a width it completely omits one item.
please have a look at attached snapshots
we are using telerik tab control for wpf, with dropdown visible option. but problem is that It trims the items text if we don't provide a width. or if e provide a width it completely omits one item.
please have a look at attached snapshots
<telerik:RadTabControl Grid.Row="0" DropDownDisplayMode="Visible" ScrollMode="Item" ItemsSource="{Binding Tabs}" IsSynchronizedWithCurrentItem="True" SelectedItem="{Binding SelectedType}" ContentTemplate="{StaticResource AddTabContentTemplate}" ItemTemplate="{StaticResource AddTabTemplate}" Margin="4" /><DataTemplate x:Key="AddTabTemplate"> <Label Content="{Binding TypeName}" Width="150" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</DataTemplate>