예제 #1
0
파일: App.cs 프로젝트: xuhe/WGestures
 public void Import(GestureIntentDict from)
 {
     foreach (var kv in from)
     {
         this[kv.Key] = kv.Value;
     }
 }
예제 #2
0
파일: App.cs 프로젝트: xuhe/WGestures
 protected AbstractApp()
 {
     Name               = "Noname";
     GestureIntents     = new GestureIntentDict();
     IsGesturingEnabled = true;
 }