Stackpanel with round border

c#, windows-phone-8, xaml

Solution

can you please try by setting background to border not to stackpanel.Almost all will be same.

<Border.Background>
==set what type of background u want==
  </Border.Background>
<StackPanel Width="425">

            <TextBlock Text="{Binding Name}" Style="{StaticResource PhoneTextLargeStyle}" FontFamily="{StaticResource PhoneFontFamilySemiBold}" TextWrapping="Wrap" Margin="12,0,12,6" Foreground="Black"/>
            <TextBlock Text="{Binding Type}" Style="{StaticResource PhoneTextNormalStyle}" TextWrapping="Wrap" FontFamily="{StaticResource PhoneFontFamilySemiBold}" Foreground="Black"/>
            <TextBlock Text="{Binding Text}" Style="{StaticResource PhoneTextNormalStyle}" TextWrapping="Wrap" FontFamily="{StaticResource PhoneFontFamilySemiLight}" Foreground="Black"/>
        </StackPanel>

Problem

I'm developing a windows phone 8 app and i have the following `Border` with a `StackPanel` but the `StackPanel` is not clipped to the `Border` ``` <Border Grid.Column="1" BorderThickness="3" BorderBrush="Black" CornerRadius="50"> <StackPanel Width="425"> <StackPanel.Background> <SolidColorBrush Color="#FFFBEAEA" Opacity="0.25"/> </StackPanel.Background> <TextBlock Text="{Binding Name}" Style="{StaticResource PhoneTextLargeStyle}" FontFamily="{StaticResource PhoneFontFamilySemiBold}" TextWrapping="Wrap" Margin="12,0,12,6" Foreground="Black"/> <TextBlock Text="{Binding Type}" Style="{StaticResource PhoneTextNormalStyle}" TextWrapping="Wrap" FontFamily="{StaticResource PhoneFontFamilySemiBold}" Foreground="Black"/> <TextBlock Text="{Binding Text}" Style="{StaticResource PhoneTextNormalStyle}" TextWrapping="Wrap" FontFamily="{StaticResource PhoneFontFamilySemiLight}" Foreground="Black"/> </StackPanel> </Border> ``` I don't know why i have done some dig on the web and this sample not works. Anyone could help me? Thanks.

Original source

Related problems