Added private property SelectedSlave
Added DocVersionInfo property to ROFSTLookup class Set DocVersionInfo to DocVersionInfo of ROFstInfo object in ROFSTLookup constructor Added Reset method to ROFSTLookup class Changed return values for ROID parameter of GetRoValue method Changes SectionConfig class to implement IItemConfig interface Added MasterSlave_Applicability property to IItemConfig Changes StepConfig class to implement IItemConfig interface Added MasterSlave_Applicability property to IItemConfig Changed GetGroup method to support multi units
This commit is contained in:
@@ -8,7 +8,7 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
[Serializable]
|
||||
[TypeConverter(typeof(ExpandableObjectConverter))]
|
||||
public class SectionConfig : ConfigDynamicTypeDescriptor, INotifyPropertyChanged
|
||||
public class SectionConfig : ConfigDynamicTypeDescriptor, INotifyPropertyChanged, IItemConfig
|
||||
{
|
||||
#region DynamicTypeDescriptor
|
||||
internal override bool IsReadOnly
|
||||
@@ -770,5 +770,27 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region IItemConfig Members
|
||||
|
||||
[Category("Master/Slave Settings")]
|
||||
[DisplayName("Applicability")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
[Description("Scope Applicability")]
|
||||
public Volian.Base.Library.BigNum MasterSlave_Applicability
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["MasterSlave", "Applicability"];
|
||||
return new Volian.Base.Library.BigNum(s);
|
||||
}
|
||||
set
|
||||
{
|
||||
_Xp["MasterSlave", "Applicability"] = value.FlagList;
|
||||
OnPropertyChanged("MasterSlave_Applicability");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user