personnaliser les propriétés de Bordure avec CornerRadius pour ListBox

Je veux personnaliser les éléments suivants Listbox-propriété d'affichage de la frontière avec CornerRadius=5..quelqu'un peut m'aider à l'atteindre sans modification de l'existant datatemplate code dans le code Xaml suivant code:

<ListBox x:Uid="lst_value"  Name="lstValues" Background="Wheat" BorderBrush="Black"
         HorizontalAlignment="Left" VerticalAlignment="Top" BorderThickness="1" Height="100" Width="150"
         ItemsSource="{Binding listval}" >
    <ListBox.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Vertical" Background="{Binding}">
                <TextBlock x:Name="txtblk" Foreground="Black" FontSize="10"  TextAlignment="Left" 
                                               FontWeight="Black" Text="{Binding}" Background="{Binding}"></TextBlock>
            </StackPanel>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>
InformationsquelleAutor soma sekhar | 2011-08-24