datepicker不是选择自定义日期格式?

use*_*510 4 .net c# winforms

要求是以"2010年1月22日"格式显示日期.

我编码了

 calanderFrom.Format = DateTimePickerFormat.Short;
 calanderFrom.CustomFormat = "dd MMM yyyy";
Run Code Online (Sandbox Code Playgroud)

但日期仍以"5/5/2011"格式出现.请指导我如何改变fromat.

谢谢

FIr*_*nda 12

更换

calanderFrom.Format = DateTimePickerFormat.Short;
Run Code Online (Sandbox Code Playgroud)

 calanderFrom.Format = DateTimePickerFormat.Custom;
Run Code Online (Sandbox Code Playgroud)