Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的组合框显示当前月份以及接下来的两个月。这就是我所拥有的,我不确定要朝哪个方向移动:
private void comboBoxcMonth_SelectedIndexChanged(object sender, EventArgs e) { DateTime.Now.Month; }
我收到:“只有赋值、调用、递增、递减和新对象表达式可以用作语句”。
任何帮助将不胜感激
您必须将“DateTime.Now.Month”值设置为您的 comboBoxcMonth.SelectedValue。如果您的 comboBoxcMonth 包含 1、2、3、4、...等值
您可以在您的活动中使用它。
comboBoxcMonth.SelectedValue = DateTime.Now.Month;
如果你想要下两个月,你可以用这个代替。
DateTime.Now.AddMonths(2).Month