寻找一个控件来重复某个模板
您好,
我正在 Silverlight 中寻找一种方法,让控件能够为绑定到它的每个项目重复模板。
我会尝试更好地解释一下。
http://img51.imageshack.us/i/naamloosmb.png/
在屏幕截图您会看到一些可用的课程。
该列表包含:“尊巴、壁球、动感单车、动感单车马拉松、私人教练 (PT) Sessies”等 每个项目都有一个描述、一张图片和一个用于转到相应课程页面的按钮。
有谁知道是否有可用的控件可以让我实现这一目标?
如果没有,我应该如何开始实现这一目标?
Greetings,
I'm looking for a way in Silverlight to have a control which repeats a template for each item bound to it.
I'll try to explain a bit better.
http://img51.imageshack.us/i/naamloosmb.png/
in the screenshot you see a few of the lessons available.
The list contains: "Zumba, Squash, Spinning, Spinning Marathon, Personal Trainer (PT) Sessies" etc
Each item has a description, a picture and a button to go to the page for the corrosponding lesson.
Does anyone know if there is a control available which allows me to achieve this?
If not, how should I start to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用列表框和项目模板?
这是一个很棒的教程:http://backissues.code- magazine.com/article.aspx?quickid=112091&page=1
基本上,您可以使用
Setter
来定义项目模板(记住在 Silverlight/WPF 中,项目的内容可以是任何内部有布局的对象。例如
制作:
Why not use a listbox and an itemtemplate?
Here is a great tutorial: http://backissues.code-magazine.com/article.aspx?quickid=112091&page=1
Basically you can use a
Setter
to define an item template (remember in Silverlight/WPF an item's content can be any object) with a layout inside.E.g.
Producing: