Example #1
0
 public MapValueRecord(string val, string trans)
 {
     value                   = val;
     translation             = trans;
     data                    = new SortedObservableCollection <IMapData>();
     data.CollectionChanged += Data_CollectionChanged;
 }
Example #2
0
 public MapMethodRecord(string val)
 {
     value                   = val;
     data                    = new SortedObservableCollection <IMapData>();
     _Count                  = 0;
     needCalc                = false;
     PropertyChanged         = null;
     data.CollectionChanged += Data_CollectionChanged;
 }