Satti
Satti

Reputation: 559

Windows Phone ListBox Circle Image View

My Requirement is i need to display my ListBox with Some Images in Circle View like Below image

enter image description here

i search more but i didn't find any thing

Upvotes: 0

Views: 616

Answers (1)

robwirving
robwirving

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

Related Questions