我正在开发一个WPF应用程序。
我有一个userControl“MycustomControl”,它包含一个dependencyProperty,它是一个图像列表。
在其中一个窗口我MycustomControl~4次,在所有窗口中我需要将列表初始化为相同的图像列表。
我试着用风格来做。类似的东西:
<Style TargetType="MycustomControl">
<Setter Property="Imeages" >
<Image Source="1.png"></Image>
<Image Source="2.png"></Image>
<Image Source="3.png"></Image>
</Setter>
</Style>
但我无法弄清楚如何做到这一点。