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

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