ListView Headers Don't Show Up

chobo2 picture chobo2 · Dec 20, 2009 · Viewed 46.4k times · Source

I am doing a windows mobile application 6.1.

I dragged in a listview and went to columns and added columns to my list view. When I run the listview they do not show up.

I then tried to add them through C# code on page load with the follow code.

ColumnHeader header = new ColumnHeader();
            header.Text = "gkgag";
            header.Width = 100;
            header.TextAlign = HorizontalAlignment.Center;
            listView1.Columns.Add(header);

this does not work either. Why don't they show up?

Answer

Jens Granlund picture Jens Granlund · Dec 20, 2009

You must use detailed view for column headers to be visible.


listView1.View = View.Details;

If that´s not the problem, column headers might be hidden behind windows systembar.