Subscribe to the Click event of the ColumnManagerRow.Cells collection.
e.g.:
<code>
private void Form1_Load(object sender, System.EventArgs e)
{
foreach( Cell cell in columnManagerRow1.Cells )
{
cell.Click += new EventHandler(cell_Click);
}
}
private void cell_Click(object sender, EventArgs e)
{
System.Diagnostics.Debug.WriteLine( sender.ToString() + ” click” );
}
</code>
Imported from legacy forums. Posted by André (had 3085 views)