绑定月份

Posted 不为失败找借口,只为成功找方法

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绑定月份相关的知识,希望对你有一定的参考价值。

    private void GetMonth()
        {
            int index = 0; //定义索引
            DateTime now = DateTime.Now;
            string month = now.Month.ToString();
            if (Convert.ToInt32(month)<10)
            {
                month = "0" + month + "";
            }
            else
            {
                month = month + "";
            }
            string[] MonthList;
            MonthList = new string[12];
            for (int i = 0; i < 12; i++)
            {
                MonthList[i] = (i + 1).ToString("00") + "";
                if (MonthList[i]==month)
                {
                    index = i;//设置索引
                }
            }
            ddlMonth.DataSource = MonthList;
            ddlMonth.SelectedIndex = index;//设置默认值
        }

 

以上是关于绑定月份的主要内容,如果未能解决你的问题,请参考以下文章

Kotlin Android Studio - setContenView - 绑定(片段)

使用绑定从片段访问父活动的 UI 元素

在约束布局中查看片段的绑定不起作用

如何组合绑定片段而不将它们包装在 XML 文字中

日历返回错误的月份

如何有条件地将 C 代码片段编译到我的 Perl 模块?