Add header to ListView C

ListView Can't see column headers

MFRASER
I am trying to populate a listview and I can not see the column headers, is
there a property I am forgetting to set?

Here is my code

// Create three items and three sets of subitems for each item.

ListViewItem item1 = new ListViewItem["item1",0];

// Place a check mark next to the item.

item1.Checked = true;

item1.SubItems.Add["1"];

item1.SubItems.Add["2"];

item1.SubItems.Add["3"];

ListViewItem item2 = new ListViewItem["item2",1];

item2.SubItems.Add["4"];

item2.SubItems.Add["5"];

item2.SubItems.Add["6"];

ListViewItem item3 = new ListViewItem["item3",0];

// Place a check mark next to the item.

item3.Checked = true;

item3.SubItems.Add["7"];

item3.SubItems.Add["8"];

item3.SubItems.Add["9"];

// Create columns for the items and subitems.

listView1.Columns.Add["Item Column", -2, HorizontalAlignment.Left];

listView1.Columns.Add["Column 2", -2, HorizontalAlignment.Left];

listView1.Columns.Add["Column 3", -2, HorizontalAlignment.Left];

listView1.Columns.Add["Column 4", -2, HorizontalAlignment.Center];

//Add the items to the ListView.

listView1.Items.AddRange[new ListViewItem[]{item1,item2,item3}];
Nov 16 '05 #1
Follow Post Reply
2 8186
Mark Schmidt

Did you set the "View" property of the ListView to "Details" instead of the default "Large Icon"?

-Mark Schmidt

----------------------------------------------------------------------?
nntp://msnews.microsoft.com/microsoft.public.dotnet.languages.csharp/
I am trying to populate a listview and I can not see the column headers, is
there a property I am forgetting to set?

Here is my code

// Create three items and three sets of subitems for each item.

ListViewItem item1 = new ListViewItem["item1",0];

// Place a check mark next to the item.

item1.Checked = true;

item1.SubItems.Add["1"];

item1.SubItems.Add["2"];

item1.SubItems.Add["3"];

ListViewItem item2 = new ListViewItem["item2",1];

item2.SubItems.Add["4"];

item2.SubItems.Add["5"];

item2.SubItems.Add["6"];

ListViewItem item3 = new ListViewItem["item3",0];

// Place a check mark next to the item.

item3.Checked = true;

item3.SubItems.Add["7"];

item3.SubItems.Add["8"];

item3.SubItems.Add["9"];

// Create columns for the items and subitems.

listView1.Columns.Add["Item Column", -2, HorizontalAlignment.Left];

listView1.Columns.Add["Column 2", -2, HorizontalAlignment.Left];

listView1.Columns.Add["Column 3", -2, HorizontalAlignment.Left];

listView1.Columns.Add["Column 4", -2, HorizontalAlignment.Center];

//Add the items to the ListView.

listView1.Items.AddRange[new ListViewItem[]{item1,item2,item3}];
Nov 16 '05 #2
Fraser Michael


When I change it to List I get the Item level, but when I set it to
details I see nothing.

*** Sent via Developersdex //www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 16 '05 #3

This discussion thread is closed

Start new discussion

Replies have been disabled for this discussion.

Similar topics

C# / C Sharp
Drawing column headers...
2 posts views Thread by Yaron | last post: by
C# / C Sharp
ListView Can't see column headers
2 posts views Thread by MFRASER | last post: by
C# / C Sharp
ListView, IComparer & column-re-ordering...
reply views Thread by Per Rollvang | last post: by
C# / C Sharp
I want to insert Image in the column headers of the Listview contol
reply views Thread by Abhishek Bagga | last post: by
C# / C Sharp
ListView-style column headers?
3 posts views Thread by Danny Tuppeny | last post: by
Visual Basic .NET
ListView Sorting by Column
19 posts views Thread by Owen T. Soroke | last post: by
Visual Basic .NET
Multi-line Column Headers for Listview?
1 post views Thread by J L | last post: by
Visual Basic .NET
Listview column headers
3 posts views Thread by JL | last post: by
.NET Framework
Scollable property in Listview class breaks column headers
reply views Thread by erik.alsmyr | last post: by
.NET Framework
changing text colors in listview column headers
1 post views Thread by =?Utf-8?B?LnBhdWwu?= | last post: by
eCommerce
The Best Way to Hire eCommerce Web Developers in 2022
reply views Thread by eddparker01 | last post: by
Mobile Development
How to Hire a Programmer in 6 Easy Steps for a Startup
reply views Thread by eddparker01 | last post: by
General
lancet: a comprehensive, efficient, and reusable util function library of go
reply views Thread by lanliddd | last post: by
Microsoft Access / VBA
TIP: Drag & Drop with Database Objects
1 post views Thread by isladogs | last post: by
General
One-click trial on TYK API gateway with Tin
reply views Thread by Trystan | last post: by
Microsoft Access / VBA
Crosstab query based form data update
1 post views Thread by jackjee | last post: by
Microsoft Windows
Laptop extremely slow after Windows 10 update
2 posts views Thread by jiwlei | last post: by
C / C++
Need a Program in OOP C++ using function over loading
1 post views Thread by Sergio281 | last post: by
Software Development
Using GIT to get remote code
1 post views Thread by xarzu | last post: by

Video liên quan

Chủ Đề