Пример #1
0
 public void Apply(BindableObject bindable)
 {
     ImplicitStyle?.Apply(bindable);
     if (ClassStyles != null)
     {
         foreach (var classStyle in ClassStyles)
         {
             ((IStyle)classStyle)?.Apply(bindable);
         }
     }
     Style?.Apply(bindable);
 }