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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user