Beispiel #1
0
 /// <inheritdoc />
 protected bool Equals(Combination other)
 {
     return
         (TriggerKey == other.TriggerKey &&
          Chord.Equals(other.Chord));
 }
Beispiel #2
0
 public bool Equals(KeyBinding other)
 {
     return(Chord.Equals(other.Chord) && Accel.Equals(other.Accel));
 }