Browse Subversion Repository
Contents of /trunk/Somali/Models/ExplorerModel.cs
Parent Directory
| Revision Log
Revision 95 -
( show annotations)
( download)
Sun Nov 28 06:24:47 2010 UTC
(13 years, 5 months ago)
by juan
File size: 434 byte(s)
mod ExplorerForm with able to open dirTree
| 1 |
using System; |
| 2 |
using System.Collections.Generic; |
| 3 |
using System.Linq; |
| 4 |
using System.Text; |
| 5 |
|
| 6 |
namespace Somali.Models |
| 7 |
{ |
| 8 |
class ExplorerModel : Somali.Base.Model |
| 9 |
{ |
| 10 |
private System.Windows.Forms.TreeNode _explorerTree = null; |
| 11 |
public System.Windows.Forms.TreeNode ExplorerTree |
| 12 |
{ |
| 13 |
get { return this._explorerTree; } |
| 14 |
set { this._explorerTree = value; } |
| 15 |
} |
| 16 |
|
| 17 |
} |
| 18 |
} |
|