如何在组合框上显示日期时间

如何在组合框上显示日期时间

本文介绍了如何在组合框上显示日期时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我选择了特定项目,则我必须拥有一个具有与当前日期一样的索引的组合框,我必须将组合框上的日期时间获取为索引值-1 ...
您可以向我发送要求的代码吗?.

i have a combo box with index like current date if i selected the particular item i have to get the date time on combo box at index value -1...
can u plz send me the code for requirment..

推荐答案

combo1.Items.Add(Now.Today.Tostring("dd/MM/yyyy hh:mm"));
combo1.Items.selectedIndex = combo1.Items.length -1;


combo1.Items.Add(DateTime.Now.ToString("dd/MM/yyyy hh:mm"));


这篇关于如何在组合框上显示日期时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 06:42