Click here to Skip to main content
15,892,839 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a listview and I want it to go left to right. I would think that "FlowDirection" changes this. Odly I only see "LeftToRight" and "RightToLeft" (where the heck is the stadard TopToBottom??).
Apparently it is just a centered property or something


How do I get this changed? That is How to I get my listview to layout its elements left to right?
Posted

1 solution

XML
<ListView.ItemsPanel>
    <ItemsPanelTemplate>
        <StackPanel Orientation="Horizontal"></StackPanel>
    </ItemsPanelTemplate>
</ListView.ItemsPanel>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900