vb.net NumericupDown 循环(简易需求)

我有一numericupdown ,来放月份的
最小值为1,最大值为12

比如在已经是12的情况下,点上,变成1

在1的情况下,点下,变成12

请问如何实现呢?

将Max Min设置为0和13
在 ValueChanged 里面判断
if NumericupDown1.Value = 0 then NumericupDown1.Value = 12
if NumericupDown1.Value = 13 then NumericupDown1.Value = 1