Click or drag to resize
DigitalRuneFocusManagerOnMoveFocus Method
Called when the focus should be moved to another control.

Namespace: DigitalRune.Game.UI
Assembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax
protected virtual UIControl OnMoveFocus(
	bool moveLeft,
	bool moveRight,
	bool moveUp,
	bool moveDown,
	List<UIControl> focusableControls
)

Parameters

moveLeft
Type: SystemBoolean
If set to the focus should move left.
moveRight
Type: SystemBoolean
If set to the focus should move right.
moveUp
Type: SystemBoolean
If set to the focus should move up.
moveDown
Type: SystemBoolean
If set to the focus should move down.
focusableControls
Type: System.Collections.GenericListUIControl
The focusable controls of the current focus scopes.

Return Value

Type: UIControl
The target control that should receive the focus.
See Also