I am trying to create a ListView
that looks like items sitting on a shelf. I am able to get the shelf background on the list view like so:
<ListView.Background>
<ImageBrush ImageSource="..\Images\bookshelf.png" AlignmentX="Left" AlignmentY="Top" TileMode="Tile" Stretch="None" ViewportUnits="Absolute" Viewport="0,0,319,203" />
</ListView.Background>
but when doing it this way the background is static and doesn't move when the ListView
scrolls. I figure I have to add this to the scrollview of the ListView
somehow but I'm not sure how.
How do I add an image that tiles and scrolls with the ListView
?