欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

wpf listview images

程序员文章站 2024-01-28 09:35:16
<listview x:name="lv">
<listview.itemspanel>
<itemspaneltemplate>
<stackpanel orientation="vertical"/>
</itemspaneltemplate>
</listview.itemspanel>
<listview.itemtemplate>
<datatemplate>
<stackpanel>
<image source="{binding imagepath}" horizontalalignment="center" verticalalignment="center" width="500" height="500"/>
</stackpanel>
</datatemplate>
</listview.itemtemplate>
</listview>