Hi,
i have updatet from Verson 8.1.0.0 to 2009.1.9.414. WinForms Control
With 8.1.0.0 i use this Code to get 2x RadDateTimePicker in my RibbonBar:
Now, it dosen't work, can you help me please?
i have updatet from Verson 8.1.0.0 to 2009.1.9.414. WinForms Control
With 8.1.0.0 i use this Code to get 2x RadDateTimePicker in my RibbonBar:
RadDateTimePicker dtPickerEnd = new RadDateTimePicker(); |
RadDateTimePicker dtPickerStart = new RadDateTimePicker(); |
dtPickerStart.Name = "dtPickerStart"; |
dtPickerStart.ThemeName = "Office2007Blue"; |
dtPickerEnd.Name = "dtPickerEnd"; |
dtPickerEnd.ThemeName = "Office2007Blue"; |
RadHostItem hostItem1 = new RadHostItem(dtPickerStart); |
hostItem1.MinSize = new Size(150, 22); |
hostItem1.MaxSize = new Size(150, 22); |
radRibbonBarButtonGroupDTStart.Items.Add(hostItem1); |
RadHostItem hostItem2 = new RadHostItem(dtPickerEnd); |
hostItem2.MinSize = new Size(150, 22); |
hostItem2.MaxSize = new Size(150, 22); |
radRibbonBarButtonGroupDTEnd.Items.Add(hostItem2); |
Now, it dosen't work, can you help me please?