现在的位置: 首页 > 综合 > 正文

测试Windows live writer 发日志

2012年08月20日 ⁄ 综合 ⁄ 共 275字 ⁄ 字号 评论关闭

测试图片:

image

测试代码段:

   1: //中文

   2: public class InvisibleQueryConditionCollection : ControlCollection

   3:  {

   4:      public InvisibleQueryConditionCollection(Control owner)

   5:          : base(owner)

   6:      {

   7:      }

   8:  

   9:      public override void Add(Control child)

  10:      {

  11:          if (child is InvisibleQueryCondition)

  12:          {

  13:              base.Add(child);

  14:          }

  15:      }

  16:  }

抱歉!评论已关闭.