mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-29 14:35:45 +00:00
Correctifs
This commit is contained in:
parent
4b5105c7c7
commit
2e7c22f977
5 changed files with 14 additions and 9 deletions
|
|
@ -7,6 +7,7 @@
|
|||
xmlns:tools="clr-namespace:AideDeJeu.Tools"
|
||||
xmlns:vm="clr-namespace:AideDeJeu.ViewModels"
|
||||
xmlns:libvm="clr-namespace:AideDeJeu.ViewModels.Library"
|
||||
xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
|
||||
x:Class="AideDeJeu.Views.MainShell"
|
||||
BackgroundColor="{DynamicResource HDWhite}"
|
||||
FlyoutBackgroundColor="{DynamicResource HDWhite}"
|
||||
|
|
|
|||
|
|
@ -5,8 +5,10 @@
|
|||
xmlns:mdview="clr-namespace:Xam.Forms.Markdown"
|
||||
xmlns:pickers="clr-namespace:AideDeJeu.Views.Pickers"
|
||||
xmlns:pcviews="clr-namespace:AideDeJeu.Views.PlayerCharacter"
|
||||
xmlns:pcvm="clr-namespace:AideDeJeu.ViewModels.PlayerCharacter"
|
||||
x:Class="AideDeJeu.Views.PlayerCharacter.AbilitiesPage"
|
||||
x:Name="This">
|
||||
x:Name="This"
|
||||
x:DataType="pcvm:PlayerCharacterEditorViewModel">
|
||||
<ContentPage.Resources>
|
||||
<ResourceDictionary>
|
||||
<tools:MonsterMarkdownTheme x:Key="MonsterMarkdownTheme" />
|
||||
|
|
@ -14,7 +16,7 @@
|
|||
</ResourceDictionary>
|
||||
</ContentPage.Resources>
|
||||
<ContentPage.ToolbarItems>
|
||||
<ToolbarItem Name="Print" Text="Générer un PDF" Order="Primary" Icon="scroll_unfurled.png" Command="{Binding PdfViewCommand, Source={x:Reference This}}" CommandParameter="{Binding SelectedPlayerCharacter}" />
|
||||
<ToolbarItem Name="Print" Text="Générer un PDF" Order="Primary" Icon="scroll_unfurled.png" Command="{Binding PdfViewCommand}" CommandParameter="{Binding SelectedPlayerCharacter}" />
|
||||
</ContentPage.ToolbarItems>
|
||||
<ContentPage.Content>
|
||||
<ScrollView Orientation="Vertical">
|
||||
|
|
@ -29,13 +31,13 @@
|
|||
<RowDefinition Height="auto" />
|
||||
</Grid.RowDefinitions>
|
||||
<Frame Grid.Column="0" BorderColor="Black" Padding="2" VerticalOptions="Start">
|
||||
<ImageButton Source="rolling_dice_cup.png" Command="{Binding RollDicesMRickCommand}" />
|
||||
<ImageButton Source="rolling_dice_cup.png" Command="{Binding RollDicesMRickCommand}" BackgroundColor="White" />
|
||||
</Frame>
|
||||
<Frame Grid.Column="1" BorderColor="Black" Padding="2">
|
||||
<ImageButton Source="cubes.png" Command="{Binding RollDices2d6plus6Command}" />
|
||||
<ImageButton Source="cubes.png" Command="{Binding RollDices2d6plus6Command}" BackgroundColor="White" />
|
||||
</Frame>
|
||||
<Frame Grid.Column="2" BorderColor="Black" Padding="2">
|
||||
<ImageButton Source="trash_can.png" Command="{Binding ResetDicesCommand}" />
|
||||
<ImageButton Source="trash_can.png" Command="{Binding ResetDicesCommand}" BackgroundColor="White" />
|
||||
</Frame>
|
||||
<Frame Grid.Row="1" Grid.ColumnSpan="3" BorderColor="Black" Padding="2" Margin="10">
|
||||
<Grid RowSpacing="10" Margin="15">
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
</ResourceDictionary>
|
||||
</ContentPage.Resources>
|
||||
<ContentPage.ToolbarItems>
|
||||
<ToolbarItem Name="Print" Text="Générer un PDF" Order="Primary" Icon="scroll_unfurled.png" Command="{Binding PdfViewCommand, Source={x:Reference This}}" CommandParameter="{Binding SelectedPlayerCharacter}" />
|
||||
<ToolbarItem Name="Print" Text="Générer un PDF" Order="Primary" Icon="scroll_unfurled.png" Command="{Binding PdfViewCommand}" CommandParameter="{Binding SelectedPlayerCharacter}" />
|
||||
</ContentPage.ToolbarItems>
|
||||
<ContentPage.Content>
|
||||
<ScrollView Grid.ColumnSpan="2" Orientation="Vertical">
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
</ResourceDictionary>
|
||||
</ContentPage.Resources>
|
||||
<ContentPage.ToolbarItems>
|
||||
<ToolbarItem Name="Print" Text="Générer un PDF" Order="Primary" Icon="scroll_unfurled.png" Command="{Binding PdfViewCommand, Source={x:Reference This}}" CommandParameter="{Binding SelectedPlayerCharacter}" />
|
||||
<ToolbarItem Name="Print" Text="Générer un PDF" Order="Primary" Icon="scroll_unfurled.png" Command="{Binding PdfViewCommand}" CommandParameter="{Binding SelectedPlayerCharacter}" />
|
||||
</ContentPage.ToolbarItems>
|
||||
<ContentPage.Content>
|
||||
<ScrollView Grid.ColumnSpan="2" Orientation="Vertical">
|
||||
|
|
|
|||
|
|
@ -4,8 +4,10 @@
|
|||
xmlns:tools="clr-namespace:AideDeJeu.Tools"
|
||||
xmlns:mdview="clr-namespace:Xam.Forms.Markdown"
|
||||
xmlns:pickers="clr-namespace:AideDeJeu.Views.Pickers"
|
||||
xmlns:pcvm="clr-namespace:AideDeJeu.ViewModels.PlayerCharacter"
|
||||
x:Class="AideDeJeu.Views.PlayerCharacter.FinalizePage"
|
||||
x:Name="This">
|
||||
x:Name="This"
|
||||
x:DataType="pcvm:PlayerCharacterEditorViewModel">
|
||||
<ContentPage.Resources>
|
||||
<ResourceDictionary>
|
||||
<tools:MonsterMarkdownTheme x:Key="MonsterMarkdownTheme" />
|
||||
|
|
@ -13,7 +15,7 @@
|
|||
</ResourceDictionary>
|
||||
</ContentPage.Resources>
|
||||
<ContentPage.ToolbarItems>
|
||||
<ToolbarItem Name="Print" Text="Générer un PDF" Order="Primary" Icon="scroll_unfurled.png" Command="{Binding PdfViewCommand, Source={x:Reference This}}" CommandParameter="{Binding SelectedPlayerCharacter}" />
|
||||
<ToolbarItem Name="Print" Text="Générer un PDF" Order="Primary" Icon="scroll_unfurled.png" Command="{Binding PdfViewCommand}" CommandParameter="{Binding SelectedPlayerCharacter}" />
|
||||
</ContentPage.ToolbarItems>
|
||||
<ContentPage.Content>
|
||||
<ScrollView Grid.ColumnSpan="2" Orientation="Vertical">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue