RssTreeNode.cs
上传用户:xtyqhl
上传日期:2022-06-07
资源大小:212k
文件大小:1k
源码类别:

Windows Mobile

开发平台:

Windows_Unix

  1. /****************************************************************
  2.  ** 文件名:RssTreeNode.cs
  3.  ** 创建人:李万龙
  4.  ** 联  系:shenlongju@hotmail.com
  5.  ** 日  期:2008-05-05
  6.  ** 描  述:继承自TreeNode,为其添加了属性
  7.  ** 修改人:
  8.  ** 日  期:
  9.  ** 描  述:
  10.  ** 版  本:1.0.0.0
  11.  ** Copyright (c) 2007-2008 3ESoft
  12. ******************************************************************/
  13. using System;
  14. using System.Collections.Generic;
  15. using System.Text;
  16. namespace _3ESoft.WindowsMobile.RSS
  17. {
  18.     /// <summary>
  19.     /// 派生类,为TreeNode添加属性
  20.     /// </summary>
  21.     public class RssTreeNode:System.Windows.Forms.TreeNode 
  22.     {
  23.         /// <summary>
  24.         /// 设置Text对象
  25.         /// </summary>
  26.         /// <param name="Text"></param>
  27.         public RssTreeNode(string text)
  28.         {
  29.             base.Text = text;
  30.         }
  31.         /// <summary>
  32.         /// 绑定Opml对象
  33.         /// </summary>
  34.         public Opml Opml { get; set; }
  35.     }
  36. }