我正在尝试在控制模板中绑定折线的点。这些点应该绑定到代码隐藏中的点集合。我当前的 xaml 代码如下:
<Style TargetType="{x:Type c:LineDragThumb}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type c:LineDragThumb}">
<Polyline Stroke="Transparent" Points="{Binding}"
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
我是否需要创建一个依赖属性来保存点集合?
请指导..