Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
830
capture data from the grid
posted

in a grid WindowsForm use this code to store a value in a cell.

if (dgBase.ActiveRow.IsDataRow && dgBase.ActiveRow.IsFilterRow == false)
                {
                    mIdScadenzaSelezionata = (int)dgBase.ActiveRow.Cells[DpScadenzarioTs.FLD_IdScadenza].Value;
                }


as you do with the WPF grid?

sorry my english.