up vote 3 down vote favorite
share [g+] share [fb]

When I use a ListView in WPF it always generates one extra column at the end of the ListView. For example, if I define two columns in my listview and when I run it it generates those two columns plus one empty column header. Any idea how I can remove that?

Sample ListView XAML

<ListView ItemsSource="{Binding Path=SearchAttributes}"
                      DockPanel.Dock="Top">
                <ListView.View>
                    <GridView x:Name="grdView">
                        <GridViewColumn Header="Name" DisplayMemberBinding="{Binding SearchFieldName}" />
                        <GridViewColumn Header="Balance" Width="Auto"
                                        CellTemplateSelector="{StaticResource searchFilterDataTemplateSelector}"
                                        >
                        </GridViewColumn>
                    </GridView>
                </ListView.View>
            </ListView>

Thanks, Jithu

link|improve this question

0% accept rate
You have a really low accept rate. You should go back to your old questions and either mark answers as accepted (if you got a good answer) or work on and improve those questions. – Merlyn Morgan-Graham Nov 16 '11 at 5:14
feedback

1 Answer

There should be a property in GridView, something like AutoGenerateColumns - set it to "False"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.