自定义组件之属性(Property)的性质(Attribute)介绍(三)
2024-07-21 02:24:24
供稿:网友
2、展开的形式
展开的形式多用于一个属性为我们自定义类的类型,比如我们定义了一个类,该类中的一个属性是另一个我们定义的类。在这种情况下属性浏览器默认是没有办法来进行类型转换的,所以显示为不可编辑的内容。如果我们要以展开的形式编辑这个属性就需要我们向上面一样来重写属性转换器。
我们首先定义一个自己的类来作为以后的属性类型。具体代码如下:
public class expandproperty
{
private int _intlist=0;
public int intlist
{
get { return this._intlist;}
set { this._intlist=value; }
}
private string _strlist="null";
public string strlist
{
get { return this._strlist;}
set { this._strlist= value;}
}
}
然后我们在自己的另一个类中声明一个这个类型的属性,在这里如果我们不加任何的性质限制,属性浏览器是不能转换改属性的。具体实现该属性的代码如下:
private expandproperty _droplist;
[categoryattribute("自定义的复杂类型设置(包括自定义类型转换器)"),
typeconverterattribute(typeof(propertygridapp.expandconverter)),
readonlyattribute(false)]
public expandproperty droplist
{
get { return this._droplist;}
set { this._droplist= value;}
}
为了让属性浏览器能够编辑该属性,也就是说能够把该属性转换成字符串,而且能够从字符串转换成该类的一个实例需要我们写如下的代码:
/// <summary>
/// 可以展开的类型转换器
/// expandproperty
/// </summary>
public class expandconverter:system.componentmodel.expandableobjectconverter
{
public expandconverter()
{
}
/// <summary>
/// 覆盖此方法已确定属性是否可以转换
/// </summary>
public override bool canconvertto(system.componentmodel.itypedescriptorcontext context, system.type destinationtype)
{
if (destinationtype==typeof(propertygridapp.expandproperty))
return true;
return base.canconvertto(context,destinationtype);
}
/// <summary>
/// 覆盖此方法并确保destinationtype参数是一个string,然后格式化所显示的内容
/// </summary>
public override object convertto(system.componentmodel.itypedescriptorcontext context, system.globalization.cultureinfo culture, object value, system.type destinationtype)
{
if (destinationtype == typeof (system.string) && value is propertygridapp.expandproperty)
{
propertygridapp.expandproperty source=(propertygridapp.expandproperty)value;
return source.intlist+","+source.strlist;
}
return base.convertto(context,culture,value,destinationtype);
}
/// <summary>
/// 覆盖此方法已确定输入的字符串是可以被转化
/// </summary>
public override bool canconvertfrom(system.componentmodel.itypedescriptorcontext context, system.type sourcetype)
{
if (sourcetype==typeof(string))
return true;
return base.canconvertfrom(context,sourcetype);
}
/// <summary>
/// 覆盖此方法根据 convertto() 方法的转换格式来把所输入的字符串转换成类,并返回该类
/// </summary>
public override object convertfrom(system.componentmodel.itypedescriptorcontext context, system.globalization.cultureinfo culture, object value)
{
if (value is string)
{
string s=(string)value;
int comma=s.indexof(",");
if (comma!=-1)
{
try
{
string intlist=s.substring(0,comma);
string strlist=s.substring(comma+1,s.length-comma-1);
propertygridapp.expandproperty ep=new expandproperty();
ep.intlist=int.parse(intlist);
ep.strlist=strlist;
return ep;
}
catch
{
return base.convertfrom(context,culture,value);
}
}
}
return base.convertfrom(context,culture,value);
}
}
编译之后的画面如下:
,欢迎访问网页设计爱好者web开发。