Rsdn.Shortcuts.ShortcutManager.FindShortcutNode C# (CSharp) Méthode

FindShortcutNode() protected méthode

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

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