コード例 #1
0
 public static void MapText(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateText(editor);
 }
コード例 #2
0
        public static void MapFont(EditorHandler handler, IEditor editor)
        {
            var fontManager = handler.GetRequiredService <IFontManager>();

            handler.NativeView?.UpdateFont(editor, fontManager);
        }
コード例 #3
0
 // This is a Android-specific mapping
 public static void MapBackground(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateBackground(editor, DefaultBackground);
 }
コード例 #4
0
 public static void MapBackground(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateBackground(editor);
コード例 #5
0
 public static void MapIsTextPredictionEnabled(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateIsTextPredictionEnabled(editor);
 }
コード例 #6
0
 public static void MapPlaceholderColor(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdatePlaceholderColor(editor, DefaultPlaceholderTextColors);
 }
コード例 #7
0
 public static void MapMaxLength(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateMaxLength(editor);
 }
コード例 #8
0
 public static void MapPlaceholderColor(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdatePlaceholderColor(editor, handler._placeholderDefaultBrush, handler._defaultPlaceholderColorFocusBrush);
 }
コード例 #9
0
 public static void MapTextColor(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateTextColor(editor);
コード例 #10
0
 public static void MapVerticalTextAlignment(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateVerticalTextAlignment(editor);
コード例 #11
0
 public static void MapKeyboard(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateKeyboard(editor);
コード例 #12
0
 public static void MapHorizontalTextAlignment(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateHorizontalTextAlignment(editor);
コード例 #13
0
 public static void MapFont(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdateFont(editor, handler.GetRequiredService <IFontManager>());
コード例 #14
0
 public static void MapPlaceholderColor(EditorHandler handler, IEditor editor) =>
 handler.NativeView?.UpdatePlaceholderColor(editor, handler._defaultPlaceholderColors);
コード例 #15
0
 public static void MapTextColor(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateTextColor(editor, DefaultTextColors);
 }
コード例 #16
0
 public static void MapIsTextPredictionEnabled(EditorHandler handler, IEditor editor)
 {
 }
コード例 #17
0
 public static void MapPlaceholder(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdatePlaceholder(editor);
 }
コード例 #18
0
 public static void MapTextColor(EditorHandler handler, IEditor editor)
 {
 }
コード例 #19
0
 public static void MapCharacterSpacing(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateCharacterSpacing(editor);
 }
コード例 #20
0
 public static void MapKeyboard(EditorHandler handler, IEditor editor)
 {
 }
コード例 #21
0
 public static void MapIsReadOnly(EditorHandler handler, IEditor editor)
 {
     handler.NativeView?.UpdateIsReadOnly(editor);
 }
コード例 #22
0
 public static void MapVerticalTextAlignment(EditorHandler handler, IEditor editor)
 {
 }