如何根据数据库值检索或启用单选按钮?

时间:2018-10-31 06:27:54

标签: c# winforms

当我使用文本框时,它们可以成功地像这样:

padd.txtCustomerName.Text = this.dtvContacts.CurrentRow.Cells[20].Value.ToString(); 

enter image description here

但是如何在单选按钮中应用。

padd.rbtLOI.Text = this.dtvContacts.CurrentRow.Cells[5].Value.ToString();

1 个答案:

答案 0 :(得分:1)

尝试这样

if (this.dtvContacts.CurrentRow.Cells[5].Value.ToString() == "LOI")
{
   padd.rbtLOI.Checked = true;
}
else
{
   padd.rbtConfirmPO.Checked = true;
}