我的 gridview 填充了这样的文章对象
var sel = (Article)cmbArticleList.SelectedItem;
DataRow newRow = articlesTable.NewRow();
newRow["CODE"] = sel.Code;
newRow["NAME"] = sel.Name;
newRow["PRICE"] = sel.Price;
articlesTable.Rows.Add(newRow);
articlesGridView.DataSource = articlesTable;
我想知道如何识别该网格的选定行,例如 onLabelSelectedRow.Text
应该填充选定的行代码文本。