| | |
| | | txt.Enabled = !isEdt; |
| | | continue; |
| | | } |
| | | //多选 |
| | | if (colType is RadioGroup) |
| | | { |
| | | var txt = colType as RadioGroup; |
| | | if (txt != null) |
| | | txt.SelectedIndex =int.Parse( strVal); |
| | | txt.ReadOnly = isEdt; |
| | | continue; |
| | | } |
| | | //时间 |
| | | if (colType is DateTimePicker) |
| | | { |
| | |
| | | txt.ReadOnly = isEdt; |
| | | continue; |
| | | } |
| | | //多选 |
| | | if (ctrl is RadioGroup) |
| | | { |
| | | var txt = ctrl as RadioGroup; |
| | | if (txt != null) |
| | | txt.SelectedIndex = 0; |
| | | txt.ReadOnly = isEdt; |
| | | continue; |
| | | } |
| | | //时间 |
| | | if (ctrl is DateTimePicker) |
| | | { |
| | |
| | | txt.ReadOnly = isEdt; |
| | | continue; |
| | | } |
| | | //多选 |
| | | if (ctrl is RadioGroup) |
| | | { |
| | | var txt = ctrl as RadioGroup; |
| | | txt.ReadOnly = isEdt; |
| | | continue; |
| | | } |
| | | //日期 |
| | | if (ctrl is DateTimePicker) |
| | | { |