for(int y = 0; y< DetailsGrid1.CurrentRowCount; y++) //Satırlarda geziyoruz
{
//DropDownList için
string a = ((DropDownList)DetailsGrid1.GetRowObject(y,"List1")).SelectedItem.Text;
// string b = ((DropDownList)DetailsGrid1.GetRowObject(y,"txParamGroup")).SelectedItem.Value;
//eBACombobox için
string c = ((eBAComboBox)DetailsGrid1.GetRowObject(y,"List2")).Text;
// string d = ((eBAComboBox)DetailsGrid1.GetRowObject(y,"txValue1")).Value;
//TextBox için
string g = ((TextBox)DetailsGrid1.GetRowObject(y,"Text1")).Text;
//CheckBox için
bool t= ((CheckBox)DetailsGrid1.GetRowObject(y,"CheckBox1")).Checked;
ShowMessageBox(a+" ,"+c+","+g);
}