Possible to center text listview column 1 ( i know to the default is left)
center text in listview column 1
Collapse
X
-
Which listview is the question about?
In the Forms ListView, the first column is fixed to left justified.
WFP's ListView can be centered with the following settings.
Code:<ListView.ItemContainerStyle> <Style TargetType = "ListViewItem"> <Setter Property = "HorizontalContentAlignment" Value = "Stretch" /> </ Style> </ ListView.ItemContainerStyle>
Comment
Comment