Rsdn.Shortcuts.ShortcutManager.FindShortcutNode C# (CSharp) Method

FindShortcutNode() protected method

protected FindShortcutNode ( Control control ) : CustomShortcut
control System.Windows.Forms.Control
return CustomShortcut
		protected CustomShortcut FindShortcutNode(Control control)
		{
			var target = FindControlHelper
				.FindControl(control, _shortcutMap);

			return target != null
				? _shortcutMap[target.GetType()]
				: null;
		}