buttons in datagrid ?

  • Thread starter Thread starter Dave Brown
  • Start date Start date
D

Dave Brown

Is it possible to add buttons to cells in a windows forms datagrid and have
their caption reflect the bound data ?

rgds,
 
Dave you should be posting this question in
microsoft.public.dotnet.framework.windowsforms
 
Dave said:
Is it possible to add buttons to cells in a windows forms datagrid and have
their caption reflect the bound data ?

Wrong forum, but yes, just handle the DataBound event and use the
FindControl() method of the EventArgs.Item to locate the button.
 
Back
Top