1

I want the columns of listview to fill all the listview. How do I do it ?

            <ListView  Grid.Row="0" ItemsSource="{Binding }">
                <ListView.View>
                    <GridView>
                        <GridViewColumn Width="200" Header="1"  />
                        <GridViewColumn Width="300"  Header="Details" />
                    </GridView>
                </ListView.View>
            </ListView>

Any Ideas, Thanks, Ido

Tetsujin no Oni
  • 7,300
  • 2
  • 29
  • 46
user1902346
  • 799
  • 1
  • 12
  • 21

1 Answers1

0

Try Width="*", or if u want your first column to be 2/5 of the listview and the other 3/5 try on the first Width="2" and the second Width="3*" there should be an * after 2 in the Width, i don't know why it isn't shown

Liviu
  • 38
  • 9