combobox

来源:互联网 发布:箩筐火车软件下载 编辑:程序博客网 时间:2024/05/22 04:44

 

      protected void bind_type()
        
{
            StuFeeSet sfs 
= new StuFeeSet();
            DataSet ds 
= sfs.getAllFeeTye();
            
this.cbType.DataSource = ds.Tables[0];
            
this.cbType.DisplayMember ="类型";
            
this.cbType.ValueMember = "id";
        }
this.cbType.SelectedIndex = this.cbType.FindString(“正常”);
原创粉丝点击