跨 Pivot 项目共享网格内容
我想知道是否可以在不同的数据透视项之间共享网格内容,以便仅将一些额外信息添加到 Windows Phone 中的另一个数据透视项。如果可能的话请告诉我。
详细地说,我在一个数据透视控件上有一个客户输入表单,下一个数据透视页面是针对一种特殊类型的客户,因此他有额外的字段,我们希望让客户感觉不同,但逻辑几乎是相同的。
我可以在另一个 PivotItem 中引用相同的 contentGrid 吗?
I'd like to know if it is possible to share grid contents across different pivotitems so that only some extra information is added to another pivot item in Windows Phone. if possible please let me know.
To elaborate, I have a customer input form on one pivot control, and the next pivot page is for a special kind of customer so he has extra fields and we want to make the customer feel different, but the logic is pretty much the same.
can I reference the same contentGrid in another PivotItem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不。但是您可以创建自定义 UserControl,并将其与相同的数据绑定。
这是有关用户控件的指南
No. But you can create a custom UserControl, and bind it with the same data.
Here's a guide about UserControls
您可以将此
contentGrid
放入DataTemplate
中,然后让不同的数据透视页面引用相同的DataTemplate
。您可能需要为每个数据透视页面创建一个ContentControl
,如下所示,然后您有两个选择。首先,您可以在 DataTemplate 中定义所有控件,然后根据客户类型显示/隐藏某些特定控件。或者,您可以为共享控件创建此
DataTemplate
,然后将这些额外的控件放在ContentControl
之外。You can put this
contentGrid
into aDataTemplate
, and then have different pivot page referencing the sameDataTemplate
. You will probably need to create aContentControl
for each of your pivot page, something like this,Then you have two choices. First you can define all your controls inside the DataTemplate then show/hide some certain controls based on the customer type. Or you can just create this
DataTemplate
for shared controls, and then put those extra ones outside theContentControl
.