This should be simple, but I'm stuck! How to create the following multibinding in code and apply it to the given row definition:
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition>
<RowDefinition.Height>
<MultiBinding Converter="{StaticResource MyMultiConverter}">
<Binding ElementName="obj1" Path="x"/>
<Binding ElementName="obj2" Path="y"/>
</MultiBinding>
</RowDefinition.Height>
</RowDefinition>
</Grid.RowDefinitions>
Thanks!
There you go:
To be able to handle the grid in codebehind you add a name to the grid: