This question is locked. New answers and comments are not allowed.
I am having an issue in Blend where I get an invalid XAML error on Line xx, Col 2 (line 5/first char of second Template below).
It works fine in VS and in the app but won't display in Blend. If I remove the <TextBlock .../> then it stops complaining but then I can't format my data column.
Any ideas?
thanks
jack
It works fine in VS and in the app but won't display in Blend. If I remove the <TextBlock .../> then it stops complaining but then I can't format my data column.
| <telerik:HierarchicalDataTemplate x:Key="DataEntryTasksTemplate" > | |
| <TextBlock Text="{Binding Path=ScheduledTaskName}" Foreground="Black" FontSize="10" /> | |
| </telerik:HierarchicalDataTemplate> | |
| <telerik:HierarchicalDataTemplate x:Key="ProtocolTasksTemplate" | |
| ItemTemplate="{StaticResource DataEntryTasksTemplate}" | |
| ItemsSource="{Binding Path=DataEntryTasks}"> | |
| <TextBlock Text="{Binding Path=ScheduledTaskName}" Foreground="Black" FontSize="11" /> | |
| </telerik:HierarchicalDataTemplate> | |
Any ideas?
thanks
jack