or
// This code does not work; user can still change the size of the TimePicker-Popup
TimePickerElement.PopupContentElement.MinSize =
new
Size(300, 350);
TimePickerElement.PopupForm.MinimumSize =
new
Size(300, 350);
var screenTip =
new
RadOffice2007ScreenTipElement();
screenTip.MainTextLabel.Text = SchedulerRepository.GetAppointmentToolTip(ent);
screenTip.CaptionLabel.Text =
""
;
screenTip.BackColor = Color.White;
screenTip.AutoSize =
false
;
var sz = screenTip.Size;
sz.Width = 400;
sz.Height = 150;
screenTip.Size = sz;
apptEle.ScreenTip = screenTip;
AppointmentEditDialogShowing event and then showing the dialog i want with theAppointmentElementDoubleClick event. it's not a modal window, but a user control i'm making visible overtop of the existing scheduler. Thanks