是否无法在同一数据透视表页面中放置多个网格?
我有一组三个元素:图像和 2 个文本框,单击这 3 个元素中的任何位置我想要触发和事件。因此,我将它们全部三个放置在枢轴项目的网格中。当我尝试再放置一个类似的网格项时,它会抛出一个错误,就像属性内容被设置多次一样。是否无法在同一数据透视表页面中放置多个网格?如果不可能,我如何定义一个具有三个元素的区域并使用手势来触发相同的事件?
I have a set of three elements:image and 2 text boxes and on click on any place in these 3 elements I want to trigger and event. So I placed all the three of them in a grid in a pivot item. When I tried to place one more grid item like it, it throws an error like the property content is set more than once. Is it not possible to place more than one grid in the same pivot page? If not possible, how can i define an area that has three elements and use a gesture to trigger an event for the same?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个数据透视项中只能有一个内容项。
如果您确实需要多个网格,则将它们放置在父面板内 - 例如,放置在 StackPanel 内或另一个网格内。
You can only have one Content item within each PivotItem.
If you do need multiple Grid's then place them inside a parent Panel - e.g. inside a StackPanel or inside another Grid.