Answers for "c# 'Cross-thread operation not valid: Control 'listView' accessed from a thread other than the thread it was created on.'"

C#
0

listview inter thread operation not valid

listView1.Invoke((MethodInvoker)delegate ()
            {
                ListViewItem item = new ListViewItem();
                item.Text = "";
                this.listView1.Items.Add(item);
            });
Posted by: Guest on January-08-2021

Code answers related to "c# 'Cross-thread operation not valid: Control 'listView' accessed from a thread other than the thread it was created on.'"

C# Answers by Framework

Browse Popular Code Answers by Language