zoukankan      html  css  js  c++  java
  • combox 绑定

     private System.Collections.ArrayList list = new System.Collections.ArrayList(); 
     System.Collections.Hashtable myHash = new System.Collections.Hashtable();
                myHash.Add("0", "未提交");
                myHash.Add("1", "提交");
                myHash.Add("2", "已完成");
                myHash.Add("-1", "作废");
                foreach (System.Collections.DictionaryEntry entry in myHash)
                    list.Add(entry);
                //绑定这该死的 下拉列表 
                STATUS5.DataSource = list;
                STATUS5.DisplayMember = "Value";
                STATUS5.ValueMember = "Key"; 

  • 相关阅读:
    函数、对象
    webpack配置
    创智培训内容
    oracle方法
    Weblogic
    药店
    ip
    jdk账号
    ansible
    目录编码
  • 原文地址:https://www.cnblogs.com/dodui/p/1927635.html
Copyright © 2011-2022 走看看