Windows Phone 7 中的展开和折叠视图
在我的 Wiondows Phone7 应用程序的页面上,我必须显示来自服务器的 XML 格式的员工姓名列表。
我需要的是,当我单击任何员工的姓名时,它应该展开以显示该员工的详细信息,而其他员工姓名应该向下滑动。
例如
第一屏
Mohit Leekha
库沙尔·凯拉
喀什纳鲁拉
当我点击Mohit Leekha时,屏幕应该看起来像
Mohit Leekha
男22
员工编号
显示图片等
库沙尔·凯拉
卡西什·纳鲁拉
我该如何实现它。
我现在唯一能想到的就是改变内容的可见性。
有没有可用的控制。
感谢和问候
On a page of my wiondows phone7 app, I have to display a list of Employee Names which are coming from the server in XML format.
what i need is when i click the name of any employee, it should expand to display the details of that employee and other eployee name name should slide down.
For example
First Screen
Mohit Leekha
Kushal Khera
Kashish narula
whaen i click on Mohit Leekha the screen should Look Like
Mohit Leekha
Male 22
Employee Id
Display Picture etc
Kushal Khera
Kashish Narula
How can i implement it.
The only thing i can think of now is to alter the visibility of the content.
Is there any control available for this.
Thanks and Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果将员工添加到 ListBox,则可以将 ItemTemplate 设置为您想要的任何内容。然后,您可以使用现有的可扩展控件(例如 WP7 工具包中的 ExpanderView)或创建您自己的控件。
If you add the employees to a ListBox then you can set the ItemTemplate to anything you want. You could then use an existing expandable control (e.g. ExpanderView from the WP7 toolkit) or create your own.
查看 Silverlight for Windows Phone 工具包中的 ExpanderView:
http://silverlight.codeplex.com/releases/view/71550
Check out the ExpanderView in the Silverlight for Windows Phone toolkit:
http://silverlight.codeplex.com/releases/view/71550