我试图在RadTimePicker上将分钟增量设置为1到5。这里的telerik文档:
https://docs.telerik.com/devtools/universal-windows-platform/controls/raddatepicker-and-radtimepicker/properties-and-configuration/raddatetimepickers-properties-pickerproperties
说
Step (DateTimeOffset): Gets or sets the step that will be applied to the picker date/time lists. Each list will take the correspomding component fron the DateTimeOffset structure.
没有示例代码,我不知道这意味着什么或如何执行,但是我已经尝试过了:
InitializeComponent();
var t = new DateTimeOffset();
t.AddMinutes(5);
timePickerz.Step = t;
在后面的代码中,但效果不好。