1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-11-01 16:05:42 +00:00

Stylé ;)

This commit is contained in:
Yan Maniez 2019-03-11 21:19:51 +01:00
parent 92135bc3ed
commit 479f8b5dc2
2 changed files with 25 additions and 35 deletions

View file

@ -1,11 +1,11 @@
#pragma warning disable 1591 #pragma warning disable 1591
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// This code was generated by a tool. // Ce code a été généré par un outil.
// Runtime Version:4.0.30319.42000 // Version du runtime :4.0.30319.42000
// //
// Changes to this file may cause incorrect behavior and will be lost if // Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
// the code is regenerated. // le code est régénéré.
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------

View file

@ -18,52 +18,42 @@
grid label { grid label {
text-align: center; text-align: center;
font-family: LinuxLibertineCapitalsBold; font-family: LinuxLibertineCapitalsBold;
-xf-vertical-text-alignment: end;
vertical-align: end;
}
flexlayout {
flex-wrap: wrap;
align-content: start;
align-items: start;
flex-direction: row;
direction: ltr;
justify-content: spaceevenly;
} }
]]> ]]>
</StyleSheet> </StyleSheet>
</ContentPage.Resources> </ContentPage.Resources>
<ContentPage.Content> <ContentPage.Content>
<ScrollView> <ScrollView>
<FlexLayout Wrap="Wrap" AlignContent="Start" AlignItems="Start" Direction="Row" FlowDirection="LeftToRight" JustifyContent="SpaceEvenly"> <FlexLayout>
<Grid> <Grid>
<Grid.RowDefinitions> <Label Text="Personnages" />
<RowDefinition Height="*" /> <ImageButton Source="battle_axe.png" Command="{Binding Main.Navigator.PlayerCharacterEditorCommand}"/>
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Label Grid.Row="1" Text="Personnages" />
<ImageButton Grid.RowSpan="2" Source="battle_axe.png" Command="{Binding Main.Navigator.PlayerCharacterEditorCommand}"/>
</Grid> </Grid>
<Grid> <Grid>
<Grid.RowDefinitions> <Label Text="Bibliothèque" />
<RowDefinition Height="*" /> <ImageButton Source="spell_book.png" Command="{Binding Main.Navigator.LibraryCommand}" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Label Grid.Row="1" Text="Bibliothèque" />
<ImageButton Grid.RowSpan="2" Source="spell_book.png" Command="{Binding Main.Navigator.LibraryCommand}" />
</Grid> </Grid>
<Grid> <Grid>
<Grid.RowDefinitions> <Label Text="Favoris" />
<RowDefinition Height="*" /> <ImageButton Source="stars_stack.png" Command="{Binding Main.Navigator.BookmarksCommand}" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Label Grid.Row="1" Text="Favoris" />
<ImageButton Grid.RowSpan="2" Source="stars_stack.png" Command="{Binding Main.Navigator.BookmarksCommand}" />
</Grid> </Grid>
<Grid> <Grid>
<Grid.RowDefinitions> <Label Text="Recherche" />
<RowDefinition Height="*" /> <ImageButton Source="crystal_ball.png" Command="{Binding Main.Navigator.DeepSearchCommand}" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Label Grid.Row="1" Text="Recherche" />
<ImageButton Grid.RowSpan="2" Source="crystal_ball.png" Command="{Binding Main.Navigator.DeepSearchCommand}" />
</Grid> </Grid>
<Grid> <Grid>
<Grid.RowDefinitions> <Label Text="A propos de..." />
<RowDefinition Height="*" /> <ImageButton Source="wooden_sign.png" Command="{Binding Main.Navigator.AboutCommand}" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Label Grid.Row="1" Text="A propos de..." />
<ImageButton Grid.RowSpan="2" Source="wooden_sign.png" Command="{Binding Main.Navigator.AboutCommand}" />
</Grid> </Grid>
</FlexLayout> </FlexLayout>
</ScrollView> </ScrollView>