1 implementation of IEditor
Microsoft.Maui.Controls (1)
Editor\Editor.cs (1)
12 public partial class Editor : InputView, IEditorController, ITextAlignmentElement, IElementConfiguration<Editor>, IEditor
40 references to IEditor
Microsoft.Maui (38)
Handlers\Editor\EditorHandler.cs (20)
18 public static IPropertyMapper<IEditor, IEditorHandler> Mapper = new PropertyMapper<IEditor, IEditorHandler>(ViewHandler.ViewMapper) 20 [nameof(IEditor.Background)] = MapBackground, 21 [nameof(IEditor.CharacterSpacing)] = MapCharacterSpacing, 22 [nameof(IEditor.Font)] = MapFont, 23 [nameof(IEditor.IsReadOnly)] = MapIsReadOnly, 24 [nameof(IEditor.IsTextPredictionEnabled)] = MapIsTextPredictionEnabled, 25 [nameof(IEditor.IsSpellCheckEnabled)] = MapIsSpellCheckEnabled, 26 [nameof(IEditor.MaxLength)] = MapMaxLength, 27 [nameof(IEditor.Placeholder)] = MapPlaceholder, 28 [nameof(IEditor.PlaceholderColor)] = MapPlaceholderColor, 29 [nameof(IEditor.Text)] = MapText, 30 [nameof(IEditor.TextColor)] = MapTextColor, 31 [nameof(IEditor.HorizontalTextAlignment)] = MapHorizontalTextAlignment, 32 [nameof(IEditor.VerticalTextAlignment)] = MapVerticalTextAlignment, 33 [nameof(IEditor.Keyboard)] = MapKeyboard, 34 [nameof(IEditor.CursorPosition)] = MapCursorPosition, 35 [nameof(IEditor.SelectionLength)] = MapSelectionLength, 41 public static CommandMapper<IEditor, IEditorHandler> CommandMapper = new(ViewCommandMapper) 62 IEditor IEditorHandler.VirtualView => VirtualView;
Handlers\Editor\EditorHandler.Standard.cs (17)
5 public partial class EditorHandler : ViewHandler<IEditor, object> 9 public static void MapText(IViewHandler handler, IEditor editor) { } 10 public static void MapTextColor(IViewHandler handler, IEditor editor) { } 11 public static void MapPlaceholder(IViewHandler handler, IEditor editor) { } 12 public static void MapPlaceholderColor(IViewHandler handler, IEditor editor) { } 13 public static void MapCharacterSpacing(IViewHandler handler, IEditor editor) { } 14 public static void MapMaxLength(IViewHandler handler, IEditor editor) { } 20 /// <param name="editor"> The associated <see cref="IEditor"/> instance.</param> 21 public static void MapIsTextPredictionEnabled(IEditorHandler handler, IEditor editor) { } 27 /// <param name="editor"> The associated <see cref="IEditor"/> instance.</param> 28 public static void MapIsSpellCheckEnabled(IEditorHandler handler, IEditor editor) { } 29 public static void MapFont(IViewHandler handler, IEditor editor) { } 30 public static void MapIsReadOnly(IViewHandler handler, IEditor editor) { } 31 public static void MapTextColor(IEditorHandler handler, IEditor editor) { } 32 public static void MapHorizontalTextAlignment(IEditorHandler handler, IEditor editor) { } 33 public static void MapVerticalTextAlignment(IEditorHandler handler, IEditor editor) { } 34 public static void MapKeyboard(IEditorHandler handler, IEditor editor) { }
Handlers\Editor\IEditorHandler.cs (1)
17 new IEditor VirtualView { get; }
Microsoft.Maui.Controls (2)
Editor\Editor.cs (1)
128 void IEditor.Completed()
ViewExtensions.cs (1)
400 else if (element is IEditor editor)