다음을 통해 공유


VisualElement.GetNextFocusForwardView Method

Definition

Overloads

GetNextFocusForwardView(BindableObject)

Returns the view that gets the focus when moving forward.

GetNextFocusForwardView(IPlatformElementConfiguration<Tizen,VisualElement>)

Returns the view that gets the focus when moving forward.

GetNextFocusForwardView(BindableObject)

Source:
VisualElement.cs
Source:
VisualElement.cs

Returns the view that gets the focus when moving forward.

public:
 static Microsoft::Maui::Controls::View ^ GetNextFocusForwardView(Microsoft::Maui::Controls::BindableObject ^ element);
public static Microsoft.Maui.Controls.View GetNextFocusForwardView (Microsoft.Maui.Controls.BindableObject element);
static member GetNextFocusForwardView : Microsoft.Maui.Controls.BindableObject -> Microsoft.Maui.Controls.View
Public Function GetNextFocusForwardView (element As BindableObject) As View

Parameters

element
BindableObject

The visual element whose next focus to get.

Returns

The view that gets the focus when moving forward.

Applies to

GetNextFocusForwardView(IPlatformElementConfiguration<Tizen,VisualElement>)

Source:
VisualElement.cs
Source:
VisualElement.cs

Returns the view that gets the focus when moving forward.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Maui::Controls::View ^ GetNextFocusForwardView(Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::Tizen ^, Microsoft::Maui::Controls::VisualElement ^> ^ config);
public static Microsoft.Maui.Controls.View GetNextFocusForwardView (this Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.Tizen,Microsoft.Maui.Controls.VisualElement> config);
static member GetNextFocusForwardView : Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.Tizen, Microsoft.Maui.Controls.VisualElement> -> Microsoft.Maui.Controls.View
<Extension()>
Public Function GetNextFocusForwardView (config As IPlatformElementConfiguration(Of Tizen, VisualElement)) As View

Parameters

config
IPlatformElementConfiguration<Tizen,VisualElement>

The platform configuration for the visual element whose next focus to get.

Returns

The view that gets the focus when moving forward.

Applies to