got a wpf window with two controls listview and lisbox(shown always at a height of window).
<Grid >
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition Width="230"/>
</Grid.ColumnDefinitions>
<Grid Grid.Column="0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<local:LeftSideListView Grid.Row="0"/>
</Grid>
<local:RightSideiveView Grid.Column="1"/>
</Grid>
Here I wanted the listview height to be auto -so I kept <RowDefinition Height="Auto"/>
but when listview has to show many items ,it shows only few items rest are truncated.
How can I show a listview with its height auto and same time if more items present (> size of window )- show a scrollviewer.
below is what I wanted..