7 references to KeyboardFlags
Microsoft.Maui (7)
Primitives\CustomKeyboard.cs (2)
8
internal CustomKeyboard(
KeyboardFlags
flags)
14
public
KeyboardFlags
Flags { get; private set; }
Primitives\Keyboard.cs (5)
39
/// Returns a new <see cref="CustomKeyboard"/> with <see cref="
KeyboardFlags
.None"/>.
41
public static Keyboard Plain => s_plain ??= new CustomKeyboard(
KeyboardFlags
.None);
95
/// Returns a new keyboard with the specified <see cref="
KeyboardFlags
" />.
98
/// <returns>A new <see cref="CustomKeyboard"/> instance with the specified <see cref="
KeyboardFlags
" />.</returns>
99
public static Keyboard Create(
KeyboardFlags
flags)