在我的应用程序中,每次 treeView 加载它的项目时,我都会收到此错误。此错误使我的应用程序加载速度变慢,并且至少需要两分钟才能加载。
错误是:System.Windows.Data Error: 26 : ItemTemplate and ItemTemplateSelector are ignored for items already of the ItemsControl's container type; Type='TreeViewItem'
我的树视图的 xaml 代码是:(我在我的 ViewModel 上使用 VB.net)
<TreeView ScrollViewer.VerticalScrollBarVisibility="Hidden"
ItemContainerStyle="{DynamicResource tviStyle}"
Background="#FFF0F0F0" BorderBrush="#FFE5E2DB"
IsEnabled="{Binding isTreeEnable}"
ItemsSource="{Binding PostcodeLijst}"
Margin="0" Name="dgStamOverzichtPostcode" />
ItemsSource 的绑定是从数据库填充的 ObservableCollection(Of TreeViewItem)。
我已经在谷歌中寻找答案,但到目前为止我一直无法找到它!有谁知道如何解决这个问题?
提前感谢您的帮助