I have a grid with four rows:
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="{Binding DocumentsHeight}"/>
<RowDefinition Height="Auto"/> - GRIDSPLITTER
<RowDefinition Height="{Binding ApprovedDocumentsHeight}" />
</Grid.RowDefinitions>
The dynamic resizing of rows works fine, heights are binded to strings with values like "5*". But when the user uses the GridSplitter, the binding stops working, getters are not called after next notify when I want to change the size of rows. Does anybody know where is the problem?
Thanks for help.