Example #1
0
        public NamedHotkey(string name, KeySettings settings)
        {
            // Try parsing the value as a reference to a named hotkey
            getValue = settings.GetHotkeyReference(name);

            if (getValue == null)
            {
                // Try parsing the value as a normal (static) hotkey
                var staticKey = Hotkey.Invalid;
                Hotkey.TryParse(name, out staticKey);
                getValue = () => staticKey;
            }
        }