only display ‘Create Enhanced’ checkbox on ‘new’

if copied item is not source or enhanced, pasting info a source is more like an ‘insert’ into enhanced.
This commit is contained in:
2016-01-26 11:46:00 +00:00
parent c035370bb0
commit c3a749e780
3 changed files with 31 additions and 11 deletions

View File

@@ -234,6 +234,12 @@ namespace VEPROMS.CSLA.Library
}
public Procedure MyProcedure
{ get { return _Procedure; } }
private bool _CreatingNew = false;
public bool CreatingNew
{
get { return _CreatingNew; }
set { _CreatingNew = value; }
}
#endregion
#region ToString
public override string ToString()