当我使用文本框时,它们可以成功地像这样:
padd.txtCustomerName.Text = this.dtvContacts.CurrentRow.Cells[20].Value.ToString();
但是如何在单选按钮中应用。
padd.rbtLOI.Text = this.dtvContacts.CurrentRow.Cells[5].Value.ToString();
答案 0 :(得分:1)
尝试这样
if (this.dtvContacts.CurrentRow.Cells[5].Value.ToString() == "LOI")
{
padd.rbtLOI.Checked = true;
}
else
{
padd.rbtConfirmPO.Checked = true;
}