I have a Grid width following Column Definitions:
<Grid.ColumnDefinitions>
<ColumnDefinition MinWidth="320" MaxWidth="450" Width=".32*"/>
<ColumnDefinition MinWidth="200" Width="Auto"/>
<ColumnDefinition MinWidth="200" Width="Auto"/>
<ColumnDefinition Width="Auto"/> <- (4) should fill all available space
<ColumnDefinition MinWidth="250" MaxWidth="300" Width=".20*"/>
</Grid.ColumnDefinitions>
The problem is that setting width to Auto on column (4) zeros it's width and last column is next to third one. I'd like to have last column aligned to right edge of app and first three to the left.
I also can't set (4) width to star(*) - obviously it stretches relatively to first and last column.
I've been trying for a while with horizontalalignments but as a result - content is not filling the columns width. I could maybe bind content width to column width or sth like that, but I'm curious whether there is some easy way to achive the (4) column fill all left space.