Page 1 of 1

Border with cornerradius not shown [CANNOT REPRODUCE]

Posted: Fri Mar 11, 2016 4:29 am
by hamej
If I specify CornerRadius for a Border, the border is not shown. With out cornerradius the border is shown. Se attached file.

Re: Border with cornerradius not shown

Posted: Mon Mar 14, 2016 3:10 am
by JS-Support @Userware
Hi,

Thanks. I couldn't reproduce the issue with the following code:

Code: Select all

<Page
    x:Class="Application2.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Application2"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        <Border BorderThickness="3" BorderBrush="Red" Background="Yellow" Width="200" Height="100" CornerRadius="20">
            <TextBlock Text="TestBorder" FontFamily="16" HorizontalAlignment="Center" VerticalAlignment="Center"/>
        </Border>
</Page>


Could you please tell me if you see any difference?

Thanks,
Regards,
JS-Support