Display a MessageBox if in debug mode ItemInfo (frmPropGrid) is opened without selecting an Item

Added Interface properties SearchDVPath and SearchPath
This commit is contained in:
Rich
2011-05-09 14:09:20 +00:00
parent 4b967f6d4b
commit 7e6fefb00c
6 changed files with 113 additions and 5 deletions

View File

@@ -108,6 +108,24 @@ namespace VEPROMS.CSLA.Library
}
public partial class FolderInfo:IVEDrillDownReadOnly
{
#region Search Paths
public string _SearchDVPath;
public string SearchDVPath
{
get
{
if (_SearchDVPath == null)
{
if (ActiveParent == null)
_SearchDVPath = Name;
else
_SearchDVPath = ActiveParent.SearchDVPath + "\u0007" + Name;
}
return _SearchDVPath;
}
}
public string SearchPath { get { return ""; } }
#endregion
#region Folder Config (Read-Only)
[NonSerialized]
private FolderConfig _FolderConfig;