How to add Tag and subitem in listview c#

5k Views Asked by At

I want to display tag and subitem in my listview , those items come by using while statement. here the code

int id = 0;
                    while ((line = sr.ReadLine()) != null)
                    {
                        id++;
                        string[] columns = line.Split(',');
                        ListViewItem item = new ListViewItem();
                        item.Tag = id;
                        item.SubItems.Add(columns[1]);
                        lv_Transactions.Items.Add(item);
                    }

subitems cab be displayed but the tag just appear blanks. Someone know to fix this please help me

2

There are 2 best solutions below

6
On BEST ANSWER

The Tag property is not displayable. You will need to add the contents of the tag as a subitem or otherwise embed it in the data you are showing to the user.

You have three choices on how to implement this:

1) ListViewItem item = new ListViewItem(id.ToString());

2) item.Text = id.ToString(); (this is effectively the same as 1)

3) item.SubItems(id.ToString()); if you want the id to appear in the list of subitems.

Update

SubItems will only work correctly if you have defined Columns in the ListView and have set the ListView's View to View.Details.

Assuming that you have not done this, the following line:

item.SubItems.Add(columns[1]);

should be modified to be:

item.Text = columns[1];
0
On

To make the item have text, which I assume you want to show the 'id', you will want this:

item.Text = id.ToString();

The tag field is ignored by the control, and exists as a way of 'tagging' the source data to a control, so it can be retrieved later on (for example, when processing an event that was trigged by the control).