I have a main datagrid with row details. The row details expand to another datagrid as shown below.
Here is the question, in the main datagrid, I put * in the width in the column, e.g.
<DataGridTextColumn Header="CUSTOMER" IsReadOnly="True" Width="100*" Binding="{Binding CUSTOMER_CODE, UpdateSourceTrigger=PropertyChanged}" />
It worked as it supposed to. It automatically fills the empty space of the datagrid.
However, I put the same * in the width in the row detail datagrid DataGridTextColumn. It seems to have absolutely no effect. See screenshot.
Could some one help me please? Thank you!