App.xaml 456 B

12345678910111213
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <Application xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="Xamarin_Styles.App">
  5. <Application.Resources>
  6. <ResourceDictionary>
  7. <Style x:Key="AppButtonStyle"
  8. TargetType="Button">
  9. <Setter Property="Rotation" Value="25" />
  10. </Style>
  11. </ResourceDictionary>
  12. </Application.Resources>
  13. </Application>