Windows Phone 7 中的展开和折叠视图

发布于 2024-12-14 10:29:52 字数 444 浏览 1 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

铃予 2024-12-21 10:29:52

如果将员工添加到 ListBox,则可以将 ItemTemplate 设置为您想要的任何内容。然后,您可以使用现有的可扩展控件(例如 WP7 工具包中的 ExpanderView)或创建您自己的控件。

<ListBox ...>
    <ListBox.ItemTemplate>
        <DataTemplate>
            <toolkit:ExpanderView>
                ....
            </toolkit:ExpanderView>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

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.

<ListBox ...>
    <ListBox.ItemTemplate>
        <DataTemplate>
            <toolkit:ExpanderView>
                ....
            </toolkit:ExpanderView>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>
又怨 2024-12-21 10:29:52

查看 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文