将环绕面板添加到列表视图项
我在互联网上进行了搜索,但没有找到我的问题的答案。
我希望能够有一个包含两列的列表视图,一列包含文本,一列包含用于将图像拖入的环绕面板。
我当前正在将列表视图绑定到数据集,因此该数据集的列由 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您设置
DataContext
,WrapPanels
不会自行填充,您需要一个ItemsControl
带有ItemsPanel
表示是一个WrapPanel
(绑定ItemsSource
)。WrapPanels
don't populate themselves if you set theDataContext
, you need anItemsControl
with anItemsPanel
that is aWrapPanel
(bind theItemsSource
).