public static void ApplySemanticColorSchemeToAll <T> (IColorScheming colorScheme) where T : ITextInputController
 {
     ApplySemanticColorSchemeToAll(colorScheme, typeof(T));
 }
Beispiel #2
0
 public static void ApplySemanticColorSchemeToAll(IColorScheming colorScheme, Type textInputControllerType)
 {
     ApplySemanticColorSchemeToAll(colorScheme, new Class(textInputControllerType));
 }
Beispiel #3
0
 public static void ApplySemanticColorSchemeToTextInput(IColorScheming colorScheme, ITextInput textInput)
 {
     ApplySemanticColorScheme(colorScheme, textInput);
 }
Beispiel #4
0
 public static void ApplySurfaceVariantWithSemanticColorScheme(IColorScheming colorScheme, BottomAppBarView bottomAppBarView)
 {
     ApplySurfaceVariant(colorScheme, bottomAppBarView);
 }
Beispiel #5
0
 public static void ApplySemanticColorSchemeToTextInputController(IColorScheming colorScheme, ITextInputController textInputController)
 {
     ApplySemanticColorScheme(colorScheme, textInputController);
 }