I have a WPF DataGrid with two columns; I want the second column to auto-fit the grid, so I set its width to "*". However, at run-time, the DataGrid resizes to a ridiculous width.
Here's my basic markup with (I think) extraneous controls and attributes removed:
<Grid>
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
<Grid>
<StackPanel>
<DataGrid Name="MyGrid" AutoGenerateColumns="False"
CanUserAddRows="False" CanUserReorderColumns="False"
CanUserResizeColumns="False">
<DataGrid.Columns>
<DataGridTextColumn Header="Column 1" Width="Auto" Binding="{Binding Field1}"/>
<DataGridTextColumn Header="Column 2" Width="*" Binding="{Binding Field2}"/>
</DataGrid.Columns>
</DataGrid>
</StackPanel>
</Grid>
</ScrollViewer>
</Grid>
I suspect the problem lies with the DataGrid being in the ScrollViewer. I tried setting the ScrollViewer's width to the DataGrid width:
Width="{Bidning ElementName=MyGrid, Path=ActualWidth}"
as suggested in this post, but no luck. I also tried setting HorizontalScrollBarVisibility to Disabled, but then everything disappears (seriously).
I should also mention all of this is in a UserControl which lies in another UserControl which then sits in the Window, which probably has something to do with everything "disappearing" (I suspect widths have gone crazy and everything is 'off the window').