WEB开发网
开发学院WEB开发ASP.NET 刚写好的Asp.Net时间和日期的Label控件。作为讲解... 阅读

刚写好的Asp.Net时间和日期的Label控件。作为讲解Asp.net控件开发的第一部分:继承开发(3)

 2007-12-15 09:32:14 来源:WEB开发网   
核心提示:#region 重写TypeConvert类的相关方法和函数public override bool CanConvertFrom(ITypeDescriptorContext context,Type sourceType){if(sourceType ==typeof(string))return tru

    #region 重写TypeConvert类的相关方法和函数    
    public override bool CanConvertFrom(ITypeDescriptorContext context,Type sourceType)
    {
      if(sourceType ==typeof(string))
        return true;
      return base.CanConvertFrom(context,sourceType);
    }
    public override object ConvertFrom(ITypeDescriptorContext context,CultureInfo culture,object value)
    {
      if(value==typeof(string))  
        return FromString(value);
      return base.ConvertFrom(context,culture,value); 
    }
    public override bool CanConvertTo(ITypeDescriptorContext context,Type destinationType)
    {
      if(destinationType ==typeof(DTFormatSetting))
        return true;
      return base.CanConvertTo(context,destinationType);
    }
    public override object ConvertTo(ITypeDescriptorContext context,CultureInfo culture,object value,Type destinationType)
    {
      if((destinationType == typeof(string))&& value is DTFormatSetting)  
        return ToString(value);
      return base.ConvertTo(context,culture,value,destinationType);
    }
    #endregion
  }
  #endregion

}

上一页  2 3 4 5 6 7 

Tags:Asp Net 时间

编辑录入:coldstar [复制链接] [打 印]
赞助商链接