home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / vbasic / Data / Utils / XZipNet.msi / Data1.cab / FolderTreeNode.cs < prev    next >
Encoding:
Text File  |  2002-02-04  |  1.2 KB  |  48 lines

  1. /*
  2.  * Xceed Zip for .NET - MiniExplorer Sample Application
  3.  * Copyright (c) 2000-2002 - Xceed Software Inc.
  4.  * 
  5.  * [FolderTreeNode.cs]
  6.  * 
  7.  * This application demonstrates how to use the Xceed FileSystem object model
  8.  * in a generic way.
  9.  * 
  10.  * This file is part of Xceed Zip for .NET. The source code in this file 
  11.  * is only intended as a supplement to the documentation, and is provided 
  12.  * "as is", without warranty of any kind, either expressed or implied.
  13.  */
  14.  
  15. using System;
  16. using System.Windows.Forms;
  17. using Xceed.FileSystem;
  18.  
  19. namespace Xceed.FileSystem.Samples.MiniExplorer
  20. {
  21.     /// <summary>
  22.     /// Summary description for FolderTreeNode.
  23.     /// </summary>
  24.     internal class FolderTreeNode : TreeNode 
  25.     {
  26.         public FolderTreeNode( AbstractFolder folder, string displayName )
  27.       : base( displayName, 1, 1 )
  28.         {
  29.       m_folder = folder;
  30.  
  31.       // Display a [+] by default
  32.       this.Nodes.Add( string.Empty );
  33.         }
  34.  
  35.     public FolderTreeNode( string displayName )
  36.       : base( displayName, 1, 1 )
  37.     {
  38.     }
  39.  
  40.     public AbstractFolder Folder
  41.     {
  42.       get { return m_folder; }
  43.     }
  44.  
  45.     private AbstractFolder m_folder = null;
  46.     }
  47. }
  48.