更新 1
如果 ControlTemplate 有绑定,会XamlReader.Load(...)
起作用吗?
<ControlTemplate TargetType="charting:LineDataPoint">
<Grid>
<ToolTipService.ToolTip>
<ContentControl Content="{Binding Value,Converter={StaticResource DateToString},ConverterParameter=TEST}"/>
</ToolTipService.ToolTip>
<Ellipse Fill="Lime" Stroke="Lime" StrokeThickness="3" />
</Grid>
</ControlTemplate>
我想从后面的代码中实现这一点。
<ControlTemplate>
<Ellipse Fill="Green" Stroke="Red" StrokeThickness="3" />
</ControlTemplate>
我搜索了很多都显示ControlTemplate 的FrameworkElementFactory
&VisualTree
属性。这些在 .NET for Windows Store Apps 中不可用。
有人知道ControlTemplate
从后面的代码创建吗?