选项卡控件中的项目控件?

发布于 10-18 08:36 字数 553 浏览 6 评论 0原文

我有以下代码要在我的 xaml 文件中实现。

<ItemsControl ItemsSource="{Binding Source={StaticResource xDoc}, XPath=targets/target/antcall/@target}">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <CheckBox Content="{Binding Path=Value, Converter={StaticResource UnderscoresConverter}}"/>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>

我的 window1 下已经有一个选项卡控件。我应该在哪里以及如何实施此项目控制?抱歉,我是 wpf 的初学者。

编辑: 我的选项卡控件下也有一个网格控件

i have the following code to be implemented into my xaml file.

<ItemsControl ItemsSource="{Binding Source={StaticResource xDoc}, XPath=targets/target/antcall/@target}">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <CheckBox Content="{Binding Path=Value, Converter={StaticResource UnderscoresConverter}}"/>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>

i already have a tab control under my window1. where and how should i implement this itemscontrol? sorry i am a beginner in wpf.

EDIT:
I have a grid control under my tab control too

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

娇俏2024-10-25 08:36:47

我不太明白你想要做什么。如果你尝试将 itemscontrol 添加到 tabcontrol,请参阅下面的代码

 <TabControl>
            <TabItem Header="Page 1">
                <Grid>
                <ItemsControl ItemsSource="{Binding Source={StaticResource xDoc}, XPath=targets/target/antcall/@target}">
                    <ItemsControl.ItemTemplate>
                        <DataTemplate>
                            <CheckBox Content="{Binding Path=Value, Converter={StaticResource UnderscoresConverter}}"/>
                        </DataTemplate>
                    </ItemsControl.ItemTemplate>
                </ItemsControl>
            </Grid>
            </TabItem>
            <TabItem Header="Page 2">
            </TabItem>
        </TabControl>

I didn't quite get what you are trying to do.If you are trying to add your itemscontrol to the tabcontrol,see the below code

 <TabControl>
            <TabItem Header="Page 1">
                <Grid>
                <ItemsControl ItemsSource="{Binding Source={StaticResource xDoc}, XPath=targets/target/antcall/@target}">
                    <ItemsControl.ItemTemplate>
                        <DataTemplate>
                            <CheckBox Content="{Binding Path=Value, Converter={StaticResource UnderscoresConverter}}"/>
                        </DataTemplate>
                    </ItemsControl.ItemTemplate>
                </ItemsControl>
            </Grid>
            </TabItem>
            <TabItem Header="Page 2">
            </TabItem>
        </TabControl>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文