FolderNode.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Windows.Forms;
  3. using System.IO;
  4. namespace FolderTree
  5. {
  6. /// <summary>
  7. /// Summary description for DiskObject.
  8. /// </summary>
  9. public class FolderNode : System.Windows.Forms.TreeNode
  10. {
  11.     string _folderPath = "";
  12.     DirectoryInfo _info;
  13.     public FolderNode(string folderPath)
  14. {
  15. _folderPath = folderPath;
  16.       _info = new DirectoryInfo(folderPath);  
  17.       this.Text = _info.Name;
  18. }
  19.     
  20.     public string FolderPath
  21.     {
  22.       get {return _folderPath;}
  23.       set {_folderPath = value;}
  24.     }
  25.     public DirectoryInfo FolderNodeInfo
  26.     {
  27.       get {return _info;}
  28.     }
  29.     
  30.     }
  31. }