Reputation: 559
My Requirement is i need to display my ListBox with Some Images in Circle View like Below image
i search more but i didn't find any thing
Upvotes: 0
Views: 616
Reputation: 1798
In XAML you want to make the circle using an Ellipse control. Then give it an ImageBrush fill.
<Ellipse>
<Ellipse.Fill>
<ImageBrush ImageSource="YourImage.png"/>
</Ellipse.Fill>
</Ellipse>
Upvotes: 4