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