Inspired by Silverlight; XAML engine using Javascript and rendering to the HTML5 Canvas.
BSick7 on calendar
BSick7 on master
Create basic implementation of … (compare)
BSick7 on 0.19.19
BSick7 on master
0.19.19 (compare)
BSick7 on border-clearvalue
<DataTemplate DataType="vm:LoginViewModel">
<ContentControl ContentUri="Views/login.fayde" />
</DataTemplate>
Thanks, good to know this is possible indeed. I've been already trying it these ways:
<Application.Resources>
<DataTemplate DataType="{x:Type vms:ListItemAutomation}">
<TextBlock Text="{Binding Text}" FontWeight="Bold" />
</DataTemplate>
<DataTemplate DataType="vms:ListItemAutomation">
<TextBlock Text="{Binding Text}" FontWeight="Bold" />
</DataTemplate>
</Application.Resources>
(one by one and both together;) — to no good. The type name is a bit different in web version, copypasted it from the .ts
class to be sure.
The same template works if planted as ItemTemplate
into the list itself.
Is ContentUri
significant here?
How do I go about debugging it?
/testsite
infrastructure by adding the relevant files to the forked repo