WPF WrapPanel - all items should have the same wid

2019-01-18 10:22发布

I have a ListBox whose ItemsPanel I have replaces with a WrapPanel. The WrapPanel now hosts the databound ListboxItems. Each item has a variable sized text in it, giving each item a different width. However, I want the width to be constant so that all items have the same width as the item with the longest text. Is that possible?

1条回答
戒情不戒烟
2楼-- · 2019-01-18 10:54

Place each item in a single-row, single-column (auto width) grid, and name the column. Set Grid.IsSharedSizeScope on the ListBox and all grids will have the same width.

查看更多
登录 后发表回答