or
private void radGridView1_EditorRequired(object sender, EditorRequiredEventArgs e){
List<string> fixedValues = GetFixedValues(); if (fixedValues == null) return; //will use a normal textbox editor for items with no fixedValues RadComboBoxEditor comboEditor = new RadComboBoxEditor(); (comboEditor.EditorElement as RadComboBoxEditorElement).DataSource = fixedValues; e.Editor = comboEditor; e.EditorType = typeof(RadComboBoxEditor); }| // dtp1 is of type RadDateTimePicker |
| dtp1.Format = DateTimePickerFormat.Long; |
| dtp1.AutoSize = true; |
| dtp1.Value = new DateTime(1982, 9, 20); |
Hi
I'm new here. And new to VB.Net (was using VB6 previously).
Can you guide me how to apply a nice theme to my app ?
Thanks...