How can I disable the resize option on a TimePicker Popup?
How can I set the MinimumSize for the Popup so the user cannot change the Size of my TimePicker control at all?
How can I set the MinimumSize for the Popup so the user cannot change the Size of my TimePicker control at all?
// 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);