在 WPF 中创建网格/WrapPanel 或其他 UIElement 的缩略图
我有一个带有一些图像
的Grid
。
我想制作另一个 Grid
,它将是这个 Grid
的副本,“只是更小”。我希望添加到第一个 Grid
的每个 Image
也会添加到另一个 Grid
中。
如果有人可以帮助我。
I have a Grid
with some Image
s.
I want to make another Grid
that will be copy of this Grid
, 'only smaller'. I want every Image
I will add to the first Grid
will add also to the other Grid
.
If someone can help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 MVVM,您就有一个驱动第一个网格内容的绑定。将第二个网格重新绑定到相同的数据成员,即使在对该集合执行编辑之后,它也会更新以显示相同的内容。
If you use MVVM you have a binding that drives the first grid's contents. Rebind the second grid to the same data member and it will update to show the same contents even after edits were performed on that collection.
使用视觉画笔
Use VisualBrush