我正在开发一个 WPF 应用程序。
我有一个 userControl“MycustomControl”,其中包含一个依赖属性,它是一个图像列表。
在其中一个窗口中我 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>
但我不知道该怎么做。