Search
VirtualKeyboard.LayoutRing Property
See Also
 






Gets or sets a list of keyboard layouts that can be cycled through.

Namespace: MindFusion.UI.Wpf
Assembly: MindFusion.Keyboard.Wpf

 Syntax

C#  Copy Code

public List<KeyboardLayout> LayoutRing { get; set; }

Visual Basic  Copy Code

Public Property LayoutRing As List(Of KeyboardLayout)

 Property Value

A list of KeyboardLayout objects.

 Remarks

Add LayoutRingKey to your layouts to let users cycle through the list. Layouts from this list are automatically assigned to TemplateLayout when user presses the LayoutRingKey, or if you call the SelectLayout method from code.

 See Also