将环绕面板添加到列表视图项

发布于 2024-12-29 19:53:55 字数 567 浏览 0 评论 0原文

我在互联网上进行了搜索,但没有找到我的问题的答案。

我希望能够有一个包含两列的列表视图,一列包含文本,一列包含用于将图像拖入的环绕面板。

我当前正在将列表视图绑定到数据集,因此该数据集的列由 WPF 列选取。

<GridViewColumn Width="100" Header="Name" DisplayMemberBinding="{Binding Path=Name}"/>
<GridViewColumn Width="110" Header="Items" >
    <GridViewColumn.CellTemplate>
        <DataTemplate>
             <WrapPanel DataContext="{Binding Path=Items}" />
        </DataTemplate>
    </GridViewColumn.CellTemplate>
</GridViewColumn>

我尝试使用此代码及其许多变体,但我只是找不到绑定它的方法。

I have searched all over the internet but to no avail to find the answer to my problem.

I want to be able to have a listview with two columns, one with text and one with a Wrap Panel to drag image into.

I am currently binding the listview to a Dataset, so the columns of said dataset get picked by the WPF column.

<GridViewColumn Width="100" Header="Name" DisplayMemberBinding="{Binding Path=Name}"/>
<GridViewColumn Width="110" Header="Items" >
    <GridViewColumn.CellTemplate>
        <DataTemplate>
             <WrapPanel DataContext="{Binding Path=Items}" />
        </DataTemplate>
    </GridViewColumn.CellTemplate>
</GridViewColumn>

I attempted to use this code and many variations of it, but i just can't find a way to bind it.

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

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

发布评论

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

评论(1

高跟鞋的旋律 2025-01-05 19:53:55

如果您设置 DataContextWrapPanels 不会自行填充,您需要一个 ItemsControl 带有 ItemsPanel 表示是一个WrapPanel(绑定ItemsSource)。

<ItemsControl ItemsSource="{Binding Items}">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <WrapPanel />
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
</ItemsControl>

WrapPanels don't populate themselves if you set the DataContext, you need an ItemsControl with an ItemsPanel that is a WrapPanel (bind the ItemsSource).

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