/// <summary> /// Removes the HotKeySet from the collection. /// </summary> /// <param name="hks"></param> public new void Remove(HotKeySet hks) { m_keyChain -= hks.OnKey; base.Remove(hks); }
/// <summary> /// Adds a HotKeySet to the collection. /// </summary> /// <param name="hks"></param> public new void Add(HotKeySet hks) { m_keyChain += hks.OnKey; base.Add(hks); }