mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-31 23:45:39 +00:00
Frame
This commit is contained in:
parent
56fd39607d
commit
3c8d03295c
1 changed files with 36 additions and 21 deletions
|
|
@ -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" />
|
||||||
|
<Frame>
|
||||||
<Grid>
|
<Grid>
|
||||||
<Label Text="Personnages" />
|
<Label Text="Personnages" />
|
||||||
<ImageButton Source="battle_axe.png" Command="{Binding Main.Navigator.PlayerCharacterEditorCommand}" />
|
<ImageButton Source="battle_axe.png" Command="{Binding Main.Navigator.PlayerCharacterEditorCommand}" />
|
||||||
</Grid>
|
</Grid>
|
||||||
|
</Frame>
|
||||||
|
<Frame>
|
||||||
<Grid>
|
<Grid>
|
||||||
<Label Text="Bibliothèque" />
|
<Label Text="Bibliothèque" />
|
||||||
<ImageButton Source="spell_book.png" Command="{Binding Main.Navigator.LibraryCommand}" />
|
<ImageButton Source="spell_book.png" Command="{Binding Main.Navigator.LibraryCommand}" />
|
||||||
</Grid>
|
</Grid>
|
||||||
|
</Frame>
|
||||||
|
<Frame>
|
||||||
<Grid>
|
<Grid>
|
||||||
<Label Text="Favoris" />
|
<Label Text="Favoris" />
|
||||||
<ImageButton Source="stars_stack.png" Command="{Binding Main.Navigator.BookmarksCommand}" />
|
<ImageButton Source="stars_stack.png" Command="{Binding Main.Navigator.BookmarksCommand}" />
|
||||||
</Grid>
|
</Grid>
|
||||||
|
</Frame>
|
||||||
|
<Frame>
|
||||||
<Grid>
|
<Grid>
|
||||||
<Label Text="Recherche" />
|
<Label Text="Recherche" />
|
||||||
<ImageButton Source="crystal_ball.png" Command="{Binding Main.Navigator.DeepSearchCommand}" />
|
<ImageButton Source="crystal_ball.png" Command="{Binding Main.Navigator.DeepSearchCommand}" />
|
||||||
</Grid>
|
</Grid>
|
||||||
|
</Frame>
|
||||||
|
<Frame>
|
||||||
<Grid>
|
<Grid>
|
||||||
<Label Text="A propos de..." />
|
<Label Text="A propos de..." />
|
||||||
<ImageButton Source="wooden_sign.png" Command="{Binding Main.Navigator.AboutCommand}" />
|
<ImageButton Source="wooden_sign.png" Command="{Binding Main.Navigator.AboutCommand}" />
|
||||||
</Grid>
|
</Grid>
|
||||||
|
</Frame>
|
||||||
</FlexLayout>
|
</FlexLayout>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
</ContentPage.Content>
|
</ContentPage.Content>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue