Page 1 of 1

Incorrect proportion in Grid RowDefinitions

Posted: Mon Jan 11, 2016 5:02 pm
by mikeda
Hi,

Following xaml example, I expect 3 textblockes are shown in same size.
It shows correctly in design view, but 1st texblock occupies most of the space in runtime.

Code: Select all

 <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="100*"/>
            <RowDefinition Height="100*"/>
            <RowDefinition Height="100*"/>
        </Grid.RowDefinitions>
        <TextBlock Text="Test1" Background="Green"/>
        <TextBlock Text="Test2" Background="Red" Grid.Row="1"/>
        <TextBlock Text="Test3" Background="Blue" Grid.Row="2"/>
    </Grid>

Re: Incorrect proportion in Grid RowDefinitions

Posted: Wed Jan 13, 2016 10:10 am
by JS-Support @Userware
Hi,

Thanks for reporting this issue. We were able to reproduce it. We are now looking for a way to fix it without causing regressions on the Grid behavior. I will keep you updated.

Regards,
JS-Support