commented out test coding to save for now.
use the ordinal step number instead of the step tab if the transition is to a non-numbered step added bool to track if the new transition is to a non-numbered step
This commit is contained in:
@@ -27,6 +27,12 @@ namespace VEPROMS.CSLA.Library
|
||||
[TypeConverter(typeof(ItemInfoConverter))]
|
||||
public partial class ItemInfo : ReadOnlyBase<ItemInfo>, IDisposable
|
||||
{
|
||||
private bool _NewTransToUnNumberedItem = false;
|
||||
public bool NewTransToUnNumberedItem
|
||||
{
|
||||
get { return _NewTransToUnNumberedItem; }
|
||||
set { _NewTransToUnNumberedItem = value; }
|
||||
}
|
||||
public event ItemInfoEvent Changed;
|
||||
private void OnChange()
|
||||
{
|
||||
|
Reference in New Issue
Block a user