J
juli jul
Hello,
I have a class which is a defenition of a editable list view ,the cells
in this list are text boxes:
public SMK_EditListView()
{
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2 });
this.Controls.AddRange(new System.Windows.Forms.Control[]
{this.editBox});
}
My problem is how to detect (while I am catching an event) which one of
the columns(text box) being accessed?
Thank you very much!
I have a class which is a defenition of a editable list view ,the cells
in this list are text boxes:
public SMK_EditListView()
{
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2 });
this.Controls.AddRange(new System.Windows.Forms.Control[]
{this.editBox});
}
My problem is how to detect (while I am catching an event) which one of
the columns(text box) being accessed?
Thank you very much!