FrameworkElement.PredictFocus(FocusNavigationDirection) Metódus
Definíció
Fontos
Egyes információk olyan, kiadás előtti termékekre vonatkoznak, amelyek a kiadásig még jelentősen módosulhatnak. A Microsoft nem vállal kifejezett vagy törvényi garanciát az itt megjelenő információért.
Meghatározza a következő elemet, amely egy adott fókuszmozgatási irányhoz viszonyítva kap fókuszt, de valójában nem helyezi át a fókuszt.
public:
override System::Windows::DependencyObject ^ PredictFocus(System::Windows::Input::FocusNavigationDirection direction);
public override sealed System.Windows.DependencyObject PredictFocus(System.Windows.Input.FocusNavigationDirection direction);
override this.PredictFocus : System.Windows.Input.FocusNavigationDirection -> System.Windows.DependencyObject
Public Overrides NotOverridable Function PredictFocus (direction As FocusNavigationDirection) As DependencyObject
Paraméterek
- direction
- FocusNavigationDirection
Azt az irányt kell meghatározni, amelyre a jövőbeli fókuszt módosítani kell.
Válaszok
A következő elem, amelybe a fókusz kerül, ha a fókusz ténylegesen bejárva lenne. Visszatérhet null , ha a fókusz nem helyezhető át ehhez az elemhez képest a megadott irányban.
Kivételek
A következő irányok egyikét adta meg a TraversalRequestkövetkezőben: Next, Previous, First, Last. Ezek az irányok nem jogi (PredictFocus(FocusNavigationDirection)de jogi).MoveFocus(TraversalRequest)
Példák
Az alábbi példa egy kezelőt implementál, amely több lehetséges gombbemenetet kezel, és mindegyik gomb egy lehetséges FocusNavigationDirectionértéket jelöl. A kezelő nyomon követi az elemet az aktuális billentyűzetfókusszal, és meghívja PredictFocus az elemet, és megadja a megadott típusparaméter inicializálásának FocusNavigationDirection megfelelőtTraversalRequest. A kezelő ahelyett, hogy az adott elemre MoveFocus váltana, vizualizációs célokra módosítja az előrejelzett fókusz célhelyének fizikai dimenzióit.
private void OnPredictFocus(object sender, RoutedEventArgs e)
{
DependencyObject predictionElement = null;
UIElement elementWithFocus = Keyboard.FocusedElement as UIElement;
if (elementWithFocus != null)
{
// Only these four directions are currently supported
// by PredictFocus, so we need to filter on these only.
if ((_focusMoveValue == FocusNavigationDirection.Up) ||
(_focusMoveValue == FocusNavigationDirection.Down) ||
(_focusMoveValue == FocusNavigationDirection.Left) ||
(_focusMoveValue == FocusNavigationDirection.Right))
{
// Get the element which would receive focus if focus were changed.
predictionElement = elementWithFocus.PredictFocus(_focusMoveValue);
Control controlElement = predictionElement as Control;
// If a ContentElement.
if (controlElement != null)
{
controlElement.Foreground = Brushes.DarkBlue;
controlElement.FontSize += 10;
controlElement.FontWeight = FontWeights.ExtraBold;
// Fields used to reset the UI when the mouse
// button is released.
_focusPredicted = true;
_predictedControl = controlElement;
}
}
}
}
Private Sub OnPredictFocus(ByVal sender As Object, ByVal e As RoutedEventArgs)
Dim predictionElement As DependencyObject = Nothing
Dim elementWithFocus As UIElement = TryCast(Keyboard.FocusedElement, UIElement)
If elementWithFocus IsNot Nothing Then
' Only these four directions are currently supported
' by PredictFocus, so we need to filter on these only.
If (_focusMoveValue = FocusNavigationDirection.Up) OrElse (_focusMoveValue = FocusNavigationDirection.Down) OrElse (_focusMoveValue = FocusNavigationDirection.Left) OrElse (_focusMoveValue = FocusNavigationDirection.Right) Then
' Get the element which would receive focus if focus were changed.
predictionElement = elementWithFocus.PredictFocus(_focusMoveValue)
Dim controlElement As Control = TryCast(predictionElement, Control)
' If a ContentElement.
If controlElement IsNot Nothing Then
controlElement.Foreground = Brushes.DarkBlue
controlElement.FontSize += 10
controlElement.FontWeight = FontWeights.ExtraBold
' Fields used to reset the UI when the mouse
' button is released.
_focusPredicted = True
_predictedControl = controlElement
End If
End If
End If
End Sub
Megjegyzések
MoveFocus az a kapcsolódó módszer, amely ténylegesen áthelyezi a fókuszt.