WPF 通过数据绑定在图像上创建矩形标签
我正在尝试向 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>
谢谢!
I'm trying to add image tags to a WPF image and I'm not having much luck. I'd like to do it through databinding if at all possible. Can I set a resource with a DataTemplate to take care of this?
Here's what I've been playing with to no avail:
<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>
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我最终使用带有包含绑定文本的 ItemResources 的画布来解决此问题。
Well, I ended up using a canvas with ItemResources containing bound text to resolve this issue.