I'm adding an image to a listview.items and I'm wondering if there's a way to change the width of each item? Right now it spans the whole list view and I'd like to make it the width of the image so I can fit a few per row.
|
|
|
When you add the columns, you have the option of setting their widths.
|
|||||
|
|
|
I think the specific answer to your question is that you just need to set Stretch=None for the image asset you've added as a ListViewItem. For instance, the following XAML leads to the display you see after it:
But this is a brittle solution since you'll need to populate each ListViewItem with potentially variable number of items inside some other container (like the StackPanel, here), if - as you mention - you want to fit a 'few per row'. Depending on the effect you're looking for, you may want to consider some alternative control approaches like GridView and the VariableSizedWrapGrid. Take a look at Jerry Nixon's post for more flexible and appealing presentations you can achieve. |
|||||||||||
|
