1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-31 15:36:07 +00:00
This commit is contained in:
Yan Maniez 2019-04-17 07:21:12 +02:00
parent 56fd39607d
commit 3c8d03295c

View file

@ -34,7 +34,12 @@
align-items: start; align-items: start;
flex-direction: row; flex-direction: row;
direction: ltr; direction: ltr;
justify-content: spaceevenly; justify-content: center;
}
frame {
border-color: black;
padding: 2;
margin: 10;
} }
]]> ]]>
</StyleSheet> </StyleSheet>
@ -61,26 +66,36 @@
<ScrollView> <ScrollView>
<FlexLayout> <FlexLayout>
<Label Text="{Binding Main.DebugCount.Result, StringFormat='Count : {0}'}" TextColor="Transparent" /> <Label Text="{Binding Main.DebugCount.Result, StringFormat='Count : {0}'}" TextColor="Transparent" />
<Grid> <Frame>
<Label Text="Personnages" /> <Grid>
<ImageButton Source="battle_axe.png" Command="{Binding Main.Navigator.PlayerCharacterEditorCommand}" /> <Label Text="Personnages" />
</Grid> <ImageButton Source="battle_axe.png" Command="{Binding Main.Navigator.PlayerCharacterEditorCommand}" />
<Grid> </Grid>
<Label Text="Bibliothèque" /> </Frame>
<ImageButton Source="spell_book.png" Command="{Binding Main.Navigator.LibraryCommand}" /> <Frame>
</Grid> <Grid>
<Grid> <Label Text="Bibliothèque" />
<Label Text="Favoris" /> <ImageButton Source="spell_book.png" Command="{Binding Main.Navigator.LibraryCommand}" />
<ImageButton Source="stars_stack.png" Command="{Binding Main.Navigator.BookmarksCommand}" /> </Grid>
</Grid> </Frame>
<Grid> <Frame>
<Label Text="Recherche" /> <Grid>
<ImageButton Source="crystal_ball.png" Command="{Binding Main.Navigator.DeepSearchCommand}" /> <Label Text="Favoris" />
</Grid> <ImageButton Source="stars_stack.png" Command="{Binding Main.Navigator.BookmarksCommand}" />
<Grid> </Grid>
<Label Text="A propos de..." /> </Frame>
<ImageButton Source="wooden_sign.png" Command="{Binding Main.Navigator.AboutCommand}" /> <Frame>
</Grid> <Grid>
<Label Text="Recherche" />
<ImageButton Source="crystal_ball.png" Command="{Binding Main.Navigator.DeepSearchCommand}" />
</Grid>
</Frame>
<Frame>
<Grid>
<Label Text="A propos de..." />
<ImageButton Source="wooden_sign.png" Command="{Binding Main.Navigator.AboutCommand}" />
</Grid>
</Frame>
</FlexLayout> </FlexLayout>
</ScrollView> </ScrollView>
</ContentPage.Content> </ContentPage.Content>