In my WPF application I have an Expander control inside a GridRow. Every time I expand the Expander I set the Row to a default Height and I do the same when the Expander is collapsed. Very simple code. Works fine.
private void expander1_Collapsed(object sender, RoutedEventArgs e)
{
myRow0.Height = 30;
}
private void expander1_Expanded(object sender, RoutedEventArgs e)
{
myRow0.Height = 200;
}
The problem begins when I attach a Grid-Splitter to the Row. With the Splitter the user should be able to enlarge to Row and the Content inside. This still works fine but when I collapse the Expander after the Splitter has been moved the Row remains it's Height.
The command
myRow0.Height = 30;
seem to have no effect at all. Height does not change. After moving the Splitter manually with the mouse the Row Height can not be set in code anymore.
I also tried
myRow0.Height = Double.NaN;
to set the Row to auto sizing but it doesn't change.
What is going wrong here?
