For Each c As Winform.Control In e.Form.Controls
If Typeof c Is WinForm.RadioButton Then
Dim t As WinForm.RadioButton = c
If t.Name.StartsWith("targetRadio") And t.Checked Then
dr2("工作目标评价") = t.Text
Else If t.Name.StartsWith("countRadio") And t.Checked Then
dr2("工作数量评价") = t.Text
Else If t.Name.StartsWith("qualityRadio") And t.Checked Then
dr2("工作质量评价") = t.Text
Else
dr2("工作表现评价") = t.Text
End If
End If
Next