I am using a RadTreeListView with MaterialDesign theme in a Windows WPF application. By default the selected cell is indicated by a grey line at the bottom of the cell. I don't want an indication for the selected cell and used the advise from forum to change the style as follows:
<Style TargetType="telerik:GridViewCell" BasedOn="{StaticResource GridViewCellStyle}">
<Setter Property="CurrentBorderBrush" Value="Transparent"/>
</Style>
This works fine.
But if changing the Windows application with Alt+Tab and then back to my application with Alt+Tab the cell selection (grey underline) is displayed.
workaround: Extract the ControlTemplate for the TreeListViewRow and set the Style explicitly or remove the local Style setter.
Please help ... treelistview is inserting unwanted rows in between records. Sample image attached and xaml code below ... Please send sample application of treelistview that is working properly if possible. Thanks. trifee <telerik:RadTreeListView ItemsSource="{Binding GetAccountsData.GetAccountLogParentAndChildData_Results, UpdateSourceTrigger=PropertyChanged}" AutoGenerateColumns="False" IsFilteringAllowed="False" IsReadOnly="True" > <telerik:RadTreeListView.ChildTableDefinitions> <telerik:TreeListViewTableDefinition ItemsSource="{Binding Items}" /> </telerik:RadTreeListView.ChildTableDefinitions>