Here Product_listViewFF is the ListView control.
statement: this.Product_listViewFF.Click += new System.EventHandler(this.Product_listViewFF_Click);
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Uma Shankar PatelPosted Oct 25, 2011, 1:41 AM
new System.EventHandler(this.Product_listViewFF_Click); register an event as Product_listViewFF_Click to ListView control.
Product_listViewFF_Click is a method whose definition you should provide in your code.