Пример #1
0
 public EnumType(ConfigurationEnumeration father, string value, List <string> enum_values) : base(father, value, true)
 {
     EnumValues      = new ObservableCollection <string>(enum_values);
     _is_global_enum = false;
 }
Пример #2
0
 public void UpdateBy(ConfigurationEnumeration other)
 {
     base.UpdateBy(other);
 }
Пример #3
0
 public EnumType(ConfigurationEnumeration father, string value, string enum_name) : base(father, value, true)
 {
     _enum_name      = enum_name;
     _is_global_enum = true;
     EnumValues      = new ObservableCollection <string>();
 }
Пример #4
0
 public ConfigurationEnumeration(ConfigurationEnumeration other, Changable father = null) : base(other, father)
 {
 }