是否无法在同一数据透视表页面中放置多个网格?

发布于 2024-10-22 04:08:04 字数 172 浏览 0 评论 0原文

我有一组三个元素:图像和 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 技术交流群。

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

发布评论

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

评论(1

痴情 2024-10-29 04:08:04

每个数据透视项中只能有一个内容项。

如果您确实需要多个网格,则将它们放置在父面板内 - 例如,放置在 StackPanel 内或另一个网格内。

<PivotItem>
    <StackPanel>
        <Grid />
        <Grid />
        <Grid />
    </StackPanel>
</PivotItem>

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.

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