Share width of a Grid-Column in a ViewCell?
问题 I would like to have my columns in my ListViews ViewCell to be all of the same size. It is currently set to auto and the widest name should win and all other columns should be set to the widest labels width. Currently they have all different widths in each row. ListView ItemTemplate Example: <ViewCell> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> / <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <Label Grid.Row="0" Text="{Binding Name}"/> [....] In WPF we have