我有一个带有如下信息的 DataGrid:
Associate Amount Time Customer
John Doe 2 9am Sam Smith
John Doe 2 10am Berry Cooper
Bill Ace 1 9am Sandy James
重复名称和数量会变得多余,所以我希望它看起来像这样:
Associate Amount
John Doe 2
Bill Ace 1
然后,当您选择一个时,它会展开以显示所选员工的时间和客户。我希望这是有道理的...我目前只使用 DataGrid 但如果需要的话我可以使用 AdvancedDataGrid...我很确定可以完成这样的事情,我只是不知道如何。
我的数据在 xml 中,如下所示:
<stat associate="John Doe" date="08/12/09" amount="2" time="9 am" customer="Sam Smith"/>
<stat associate="John Doe" date="08/12/09" amount="2" time="10 am" customer="Berry Cooper"/>
<stat associate="Bill Ace" date="08/12/09" amount="1" time="9 am" customer="Sandy James"/>
谢谢!!!