C#中dategridview数据源能否与Dictionary绑定
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#中dategridview数据源能否与Dictionary绑定相关的知识,希望对你有一定的参考价值。
我也知道用list<t>绑定数据源,但因为某些需要,鄙人想用Dictionary数据源与datagridview绑定,自己试了一下,Dictionary中读出了数据,而且编译也通过,但是界面运行后,datagridview中没有呈现任何数据,鄙人想问问高手们有没办法将datagrideview数据源与Dictionary绑定,感谢各位高手指点
参考技术A 不能直接绑定DataGridView的数据源必须是实现以下接口的任意类型:
(1)IList
接口,包括一维数组。
(2)IListSource
接口,例如,DataTable和DataSet类。
(3)IBindingList
接口,例如,BindingList<T>类。
(4)IBindingListView
接口,例如,BindingSource类。
而Dictionary的类型定义为:
[SerializableAttribute]
[ComVisibleAttribute(false)]
public
class
Dictionary<TKey,TValue>
:
IDictionary<TKey,TValue>,
ICollection<KeyValuePair<TKey,TValue>>,
IEnumerable<KeyValuePair<TKey,TValue>>,
IDictionary,
ICollection,
IEnumerable,
ISerializable,
IDeserializationCallback
并为实现以上接口
因此如果需要绑定
需要转换为实现以上接口的类型
转换很容易
我不写了
C#能否 设置 WebService 中SOAP 请求的Head 吗
参考技术A Asp.net页面中调用以SOAP头作验证的web services操作步骤:第一步:用来作SOAP验证的类必须从SoapHeader类派生,类中Public的属性将出现在自动产生XML节点中,即:
<soap:Header>
<UserSoapHeader xmlns="http://tempuri.org/">
<UserName>string</UserName>
<Pwd>string</Pwd>
</UserSoapHeader>
</soap:Header>
public class UserSoapHeader : SoapHeader
private string _userName;
private string _pwd;
//public的属性将自动生成xml结点
public string UserName
get return _userName;
set _userName = value;
public string Pwd
get return _pwd;
set _pwd = value;
第二步:
在WebServices服务类中添加一个public的属性(必须public),类型为从UserSoapHeader
/// <summary>
/// WebService 的摘要说明
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class WebService : System.Web.Services.WebService
//此属性将作为验证属性
//方法的SoapHeaderAttribute中的名称与此变量一致
public UserSoapHeader userHeader;
public WebService()
//如果使用设计的组件,请取消注释以下行
//InitializeComponent();
[WebMethod]
[SoapHeader("userHeader")]//这里很重要,名称要和定义的验证属性名称一致!
public string HelloWorld()
//进入此方法后,userHeader将自动有值
if (userHeader != null)
return "this is retVal : " + userHeader.UserName;
return " check not successed ";
第三步:在客户端进行调用:
1. 添加WEB引用
2. 实例化服务类
3. 实例化SOAP头(在客户端将会自动生成作来作验证的属性;该属性类型为:UserSoapHeader;该属性的名称为:UserSoapHeaderValue) ;自动生成的属性生成规则为:验证类型名称+Value;
4. 调用服务提供的方法。
WebService s = new WebService();
UserSoapHeader a = new UserSoapHeader();
a.UserName = "admin";
a.Pwd = "zz";
s.UserSoapHeaderValue = a; //此属性是自动生成的
Response.Write( s.HelloWorld() ); // this is retVal : admin
以上是关于C#中dategridview数据源能否与Dictionary绑定的主要内容,如果未能解决你的问题,请参考以下文章
c# winform 一个dategridview 同时显示几张数据表
C#中RowCount和Rows.Count有何区别,分别怎么用?
求一个c#winfrom 合并datagridview的效果通过npoi导出也是和dategridview合并效果一样的excel例子