예제 #1
0
 public void Merge(PropList pl)
 {
     for (int i = 0; i < pl.Count; i++)
     {
         this.Add(pl.GetKey(i), pl.GetByIndex(i));
     }
 }
예제 #2
0
 private void Init()
 {
     this.m_slPairs         = new SortedList <Keys, KeyPair>();
     this.m_aOtherPressed   = new List <Keys>();
     this._plActionsAndKeys = new PropList();
     this.ReceiveEndogineKeys(null);
 }
예제 #3
0
 private void Init()
 {
     this.m_slPairs = new SortedList<Keys, KeyPair>();
     this.m_aOtherPressed = new List<Keys>();
     this._plActionsAndKeys = new PropList();
     this.ReceiveEndogineKeys(null);
 }
예제 #4
0
 public void Merge(PropList pl)
 {
     for (int i = 0; i < pl.Count; i++)
         this.Add(pl.GetKey(i), pl.GetByIndex(i));
 }
예제 #5
0
 public Node(bool bAutoCreateChildIfNotExists)
 {
     this._bAutoCreateChildIfNotExists = bAutoCreateChildIfNotExists;
     this.ChildNodes = new PropList();
 }
예제 #6
0
 public Node()
 {
     this.ChildNodes = new PropList();
 }
예제 #7
0
 public Node(bool bAutoCreateChildIfNotExists)
 {
     this._bAutoCreateChildIfNotExists = bAutoCreateChildIfNotExists;
     this.ChildNodes = new PropList();
 }
예제 #8
0
 public Node()
 {
     this.ChildNodes = new PropList();
 }