快速业务通道

Asp.net 3.5控件和组件开发技术系列—服务器控件属性(四)

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-20
,所以要求转换为字符串格式;反之,会 把字符串逆向转换为 SolidCoordinate 类。这就是类型转换器的功能。

格式SolidCoordinate="3,5,8" 是可以自定义的,比如可以定义成SolidCoordinate="3-5-8" 格式,规则可以在转换器类中任意指定,只要是字符串格式且保证正反向转换规则一致即可。

接下来开始讲解代码部分。SolidCoordinate 类共有三个属性(X ,Y ,Z ),前两个值(X ,Y )与Point 类型的(X ,Y )属性一致,表示平面上的横坐标和纵坐标;(Z )属性表示平面 之外的第三维坐标,类代码如下:

/// <summary>
/// 获得本书更多内容,请看:
/// http://blog.csdn.net/ChengKing/archive/2008/08/18/2792440.aspx
/// </summary>

[TypeConverter(typeof(SolidCoordinateConverter))]
public class SolidCoordinate
{
   private int x;
   private int y;
   private int z;

   public SolidCoordinate()
   {
   }

   public SolidCoordinate(int x,int y,int z)
   {
     this.x = x;
     this.y = y;
     this.z = z;
   }

   [NotifyParentProperty(true)]
   public int x
   {
     get
     {
       return this.x;
     }
     set
     {
       this.x = value;
     }
   }

   [NotifyParentProperty(true)]
   public int Y 
   {
     get
     {
       return this.y;
     }
     set
     {
       this.y = value;
     }
   }

   [NotifyParentProperty(true)]
   public int Z 
   {
     get
     {
       return this.z;
     }
     set
     {
       this.z = value;
     }
   }
}

窃旗鷹祥淫凄眉倖恫炎奉來?短嗤販採圭隈。俶勣廣吭議頁貧中嗤鞘?

[TypeConverter(typeof(SolidCoordinateConverter))]

凪恬喘頁峺協乎窃議廬算匂葎SolidCoordinateConverter ?軸群頁SolidCoordinate 窃侏議陣 周奉來脅氏聞喘緩窃侏廬算匂。

SolidCoordinateConverter 窃議坿旗鷹泌和?

/// <summary>
/// 資誼云慕厚謹坪否,萩心:
/// http://blog.csdn.net/ChengKing/archive/2008/08/18/2792440.aspx
/// </summary>

public class SolidCoordinateConverter : TypeConverter
{
   public override bool CanConvertFrom(ITypeDescriptorContext context,Type  sourceType)
   {
     return ((sourceType == typeof(string)) || base.CanConvertFrom (context,sourceType));
   }

   public override bool CanConvertTo(ITypeDescriptorContext context,Type  destinationType)
   {
     return ((destinationType == typeof(InstanceDescriptor)) ||        base.CanConvertTo(context,destinationType));
   }

   public override object ConvertFrom(ITypeDescriptorContext  context,CultureInfo culture,object value)
   {
     string str = value as string;
     if (str == null)
     {
       return base.ConvertFrom(context,culture,value);
     }
     string str2 = str.Trim();
     if (str2.Length == 0)
     {
       return null;
     }
     if (culture == null)
     {
       culture = CultureInfo.CurrentCulture;
     }
     char ch 

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站: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号