在C#中,怎么绑定combox,要同时绑定valuesmember和displaymember。

我查找出来了课室类型名称和课室类型ID,其中课室类型名称是显示的值,课室类型ID是真实值。现在我想在combox中默认显示一个"全部"字段,用于查找全部的课室类型。我该怎... 我查找出来了课室类型名称和课室类型ID,其中课室类型名称是显示的值,课室类型ID是真实值。现在我想在combox中默认显示一个"全部"字段,用于查找全部的课室类型。我该怎么办? 展开
 我来答
隋蔓42
2011-09-02 · TA获得超过867个赞
知道小有建树答主
回答量:234
采纳率:0%
帮助的人:146万
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace publicClass.publicClass.other
{
public class ComBDa
{
private string _StrValue;
private string _StrText;
public ComBDa(string StrValue, String StrText)
{
_StrText = StrText;
_StrValue = StrValue;
}

//覆盖该方法是为了使该对象的值在下拉列表框中显示出来
public override string ToString()
{
return StrText;
}

public string StrValue
{
get { return _StrValue; }
set { _StrValue = value; }
}

public string StrText
{
get { return _StrText; }
set { _StrText = value; }
}
//通过键值得到描述
public static string getText(ComboBox pCob, string pKey)
{
foreach (object obj in pCob.Items)
{
ComBDa sc = (ComBDa)obj;
if (sc._StrValue == pKey)
{
pCob.Text = sc._StrText;
return sc._StrText;
}
}
return "";
}

//通过描述得到键值
public static string getKey(ComboBox pCob, string pText)
{
string txt = pText;
if (txt == null || txt == "")
{
if (pCob.SelectedIndex > -1)
{
ComBDa sc = (ComBDa)pCob.Items[pCob.SelectedIndex];
return sc._StrValue;
}
}
foreach (object obj in pCob.Items)
{
ComBDa sc = (ComBDa)obj;
if (sc._StrText == txt) return sc._StrValue;
}
return txt;
}
//pCob选中值为pvalue的哪一项
public static int getSelectIndex(ComboBox pCob, string pvalue)
{
int j = 0;
for (int i = 0; i < pCob.Items.Count; i++)
{
ComBDa sc1 = (ComBDa)pCob.Items[i];
if (sc1.StrValue == pvalue)
{
j = i;
break;
}
}
return j;

}
//pCob选中文本为ptext的哪一项
public static int getSelectIndexText(ComboBox pCob, string ptext)
{
int j = 0;
for (int i = 0; i < pCob.Items.Count; i++)
{
ComBDa sc1 = (ComBDa)pCob.Items[i];
if (sc1.StrText == ptext)
{
j = i;
break;
}
}
return j;

}
}
}
紫凌浮梦
2011-09-02
知道答主
回答量:23
采纳率:0%
帮助的人:14.2万
展开全部
同求解。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
肚子痛的嘛
2011-09-02 · 超过19用户采纳过TA的回答
知道答主
回答量:122
采纳率:0%
帮助的人:56.6万
展开全部
没看懂你干什么。。你说清楚流程
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式