Пример #1
0
 public void SetShortKey(ShortKey key, bool newShortKey)
 {
     cbxCategory.DataSource = ShortKeyConfiguration.GetCategories();
     shortKeyBindingSource.DataSource = key;
     cbxCategory.Text = key.Category;
     cbxCategory.Enabled = newShortKey;
 }
Пример #2
0
 public bool IsMatched(string key)
 {
     return(ShortKey?.Equals(key, StringComparison.OrdinalIgnoreCase) == true ||
            LongKey?.Equals(key, StringComparison.OrdinalIgnoreCase) == true);
 }