快速业务通道

ASP.NET控件开发基础(10)

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-21
f(DropItemEditor), typeof(UITypeEditor)),
     ]
    //定义集合属性
    public ArrayList DropItemList
     {
       get
       {
         if (dropItemList == null)
         {
           dropItemList = new ArrayList();
         }
         return dropItemList;
       }
     }

然后再来看下效果,这样就方面很多了.

ASP.NET控件开发基础(10)

如果还不想看到编辑器里的CustomComponents的命名空间的话,你可以像上一篇一样自定义一个类型转换器,代码如下:

public class DropItemConverter : ExpandableObjectConverter
   {
     方法#region 方法

     public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
     {
       if (sourceType == typeof(string))
       {
         return true;
       }
       return base.CanConvertFrom(context, sourceType);
     }

     public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
     {
       if (destinationType == typeof(string))
       {
         return true;
       }
       return base.CanConvertTo(context, destinationType);
     }

     public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture,
       object value)
     {
       if (value == null)
       {
         return new DropItem();
       }
       if (value is string)
       {
         string s = (string)value;
         if (s.Length == 0)
         {
           return new DropItem();
         }
         return "DropItem";

       }
       return base.ConvertFrom(context, culture, value);
     }

     public override object ConvertTo(
       ITypeDescriptorContext context,
       CultureInfo culture, object value, Type destinationType)
     {
       if (value != null)
       {
         if (!(value is DropItem))
         {
           throw new ArgumentException(
             "Invalid DropItem", "value");
         }
       }

       if (destinationType == typeof(string))
       {
         if (value == null)
         {
           return String.Empty;
         }
         return "DropItem";
       }
       return base.ConvertTo(context, culture, value,
         destinationType);
     }
     #endregion
   }

然后还是照着步骤把属性与其关联起来

[TypeConverter(typeof(DropItemConverter))]
   public class DropItem
   {
   }

再来看下效果

ASP.NET控件开发基础(10)

好了,这回讲的比较简单又实用,希望对大家有帮助.大家同时也可以参考MSDN里的例子,下面的示例代码下载我也加上了MSDN的例子.

已经写了10篇了,我们应该有些基础了,我想大家该可以做出一些简单实用的控件了.

本文配套源码

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号