0

我正在尝试将图像标签添加到 WPF 图像中,但运气不佳。如果可能的话,我想通过数据绑定来做到这一点。我可以使用 DataTemplate 设置资源来处理这个问题吗?

这是我一直在玩的无济于事:

    <Image Margin="25,4,14,46" 
           Name="MainImage" 
           Stretch="Uniform"
           MouseDown="MainImage_MouseDown" 
           Grid.Row="1" 
           HorizontalAlignment="Left"
           VerticalAlignment="Top"
           Source="{Binding Path=FileName}"
           >
        <Image.Resources>
            <DataTemplate DataType="{x:Type capp:CAPMeta}">
                <Label Content="{Binding Path=TagText}">
                </Label>
            </DataTemplate>
        </Image.Resources>                
    </Image>

谢谢!

4

1 回答 1

0

好吧,我最终使用了一个带有 ItemResources 的画布,其中包含绑定文本来解决这个问题。

于 2010-06-18T16:24:33.440 回答