Inheritance: ViewHandler
Beispiel #1
0
 public static void MapPadding(ButtonHandler handler, IButton button)
 {
     handler.NativeView?.UpdatePadding(button, DefaultPadding);
 }
 public static void MapTextColor(ButtonHandler handler, IButton button)
 {
     handler.TypedNativeView?.UpdateTextColor(button);
 }
Beispiel #3
0
 public static void MapCharacterSpacing(ButtonHandler handler, IButton button)
 {
 }
Beispiel #4
0
        public static void MapFont(ButtonHandler handler, IButton button)
        {
            var fontManager = handler.GetRequiredService <IFontManager>();

            handler.NativeView?.UpdateFont(button, fontManager);
        }
Beispiel #5
0
 public static void MapTextColor(ButtonHandler handler, IButton button)
 {
     handler.NativeView?.UpdateTextColor(button, DefaultForeground);
 }
Beispiel #6
0
 public static void MapText(ButtonHandler handler, IButton button)
 {
     handler.NativeView?.UpdateText(button);
 }
Beispiel #7
0
 public static void MapBackground(ButtonHandler handler, IButton button)
 {
     handler.NativeView?.UpdateBackground(button, DefaultBackground);
 }
Beispiel #8
0
 public static void MapPadding(ButtonHandler handler, IButton button)
 {
     handler.TypedNativeView?.UpdatePadding(button);
 }
Beispiel #9
0
 public static void MapTextColor(ButtonHandler handler, IButton button)
 {
     handler.TypedNativeView?.UpdateTextColor(button, ButtonTextColorDefaultNormal, ButtonTextColorDefaultHighlighted, ButtonTextColorDefaultDisabled);
 }