mirror of
				https://github.com/Nioux/AideDeJeu.git
				synced 2025-10-31 07:26:09 +00:00 
			
		
		
		
	Poil de design
This commit is contained in:
		
							parent
							
								
									e03d067b36
								
							
						
					
					
						commit
						d0977d626a
					
				
					 3 changed files with 48 additions and 256 deletions
				
			
		|  | @ -83,7 +83,7 @@ | ||||||
|             </Style> |             </Style> | ||||||
| 
 | 
 | ||||||
|             <Style TargetType="Label" ApplyToDerivedTypes="True"> |             <Style TargetType="Label" ApplyToDerivedTypes="True"> | ||||||
|                 <Setter Property="FontFamily" Value="{DynamicResource LinuxLibertine}" /> |                 <!--<Setter Property="FontFamily" Value="{DynamicResource LinuxLibertine}" />--> | ||||||
|             </Style> |             </Style> | ||||||
| 
 | 
 | ||||||
|             <Style TargetType="NavigationPage" ApplyToDerivedTypes="True"> |             <Style TargetType="NavigationPage" ApplyToDerivedTypes="True"> | ||||||
|  |  | ||||||
|  | @ -12,12 +12,27 @@ | ||||||
|         </ResourceDictionary> |         </ResourceDictionary> | ||||||
|     </ContentView.Resources> |     </ContentView.Resources> | ||||||
|     <ContentView.Content> |     <ContentView.Content> | ||||||
|         <ScrollView Grid.ColumnSpan="2" Orientation="Vertical"> |         <ScrollView Orientation="Vertical"> | ||||||
|             <StackLayout> |             <Grid> | ||||||
|                 <Frame BorderColor="Black" Padding="2" Margin="10"> |                 <Grid.ColumnDefinitions> | ||||||
|  |                     <ColumnDefinition Width="*" /> | ||||||
|  |                     <ColumnDefinition Width="*" /> | ||||||
|  |                     <ColumnDefinition Width="*" /> | ||||||
|  |                 </Grid.ColumnDefinitions> | ||||||
|  |                 <Grid.RowDefinitions> | ||||||
|  |                     <RowDefinition Height="auto" /> | ||||||
|  |                     <RowDefinition Height="*" /> | ||||||
|  |                 </Grid.RowDefinitions> | ||||||
|  |                 <Frame Grid.Column="0" BorderColor="Black" Padding="2" VerticalOptions="Start"> | ||||||
|                     <ImageButton Source="rolling_dice_cup.png" Command="{Binding RollDicesCommand}" /> |                     <ImageButton Source="rolling_dice_cup.png" Command="{Binding RollDicesCommand}" /> | ||||||
|                 </Frame> |                 </Frame> | ||||||
|                 <Frame BorderColor="Black" Padding="2" Margin="10"> |                 <Frame Grid.Column="1" BorderColor="Black" Padding="2"> | ||||||
|  |                     <ImageButton Source="cubes.png" Command="{Binding RollDicesCommand}" /> | ||||||
|  |                 </Frame> | ||||||
|  |                 <Frame Grid.Column="2" BorderColor="Black" Padding="2"> | ||||||
|  |                     <ImageButton Source="trash_can.png" Command="{Binding RollDicesCommand}" /> | ||||||
|  |                 </Frame> | ||||||
|  |                 <Frame Grid.Row="1" Grid.ColumnSpan="3" BorderColor="Black" Padding="2" Margin="10"> | ||||||
|                     <StackLayout> |                     <StackLayout> | ||||||
|                         <Grid> |                         <Grid> | ||||||
|                             <Grid.ColumnDefinitions> |                             <Grid.ColumnDefinitions> | ||||||
|  | @ -64,14 +79,7 @@ | ||||||
|                             /> |                             /> | ||||||
|                     </StackLayout> |                     </StackLayout> | ||||||
|                 </Frame> |                 </Frame> | ||||||
| 
 |             </Grid> | ||||||
|                 <!--<pickers:StringPickerView BindingContext="{Binding}" Title="Force" ItemsSource="{Binding Abilities}" SelectedItem="{Binding SelectedPlayerCharacter.Abilities.Strength.BaseValue, Mode=TwoWay}" /> |  | ||||||
|                 <pickers:StringPickerView BindingContext="{Binding}" Title="Dextérité" ItemsSource="{Binding Abilities}" SelectedItem="{Binding SelectedPlayerCharacter.Abilities.Dexterity.BaseValue, Mode=TwoWay}" /> |  | ||||||
|                 <pickers:StringPickerView BindingContext="{Binding}" Title="Constitution" ItemsSource="{Binding Abilities}" SelectedItem="{Binding SelectedPlayerCharacter.Abilities.Constitution.BaseValue, Mode=TwoWay}" /> |  | ||||||
|                 <pickers:StringPickerView BindingContext="{Binding}" Title="Intelligence" ItemsSource="{Binding Abilities}" SelectedItem="{Binding SelectedPlayerCharacter.Abilities.Intelligence.BaseValue, Mode=TwoWay}" /> |  | ||||||
|                 <pickers:StringPickerView BindingContext="{Binding}" Title="Sagesse" ItemsSource="{Binding Abilities}" SelectedItem="{Binding SelectedPlayerCharacter.Abilities.Wisdom.BaseValue, Mode=TwoWay}" /> |  | ||||||
|                 <pickers:StringPickerView BindingContext="{Binding}" Title="Charisme" ItemsSource="{Binding Abilities}" SelectedItem="{Binding SelectedPlayerCharacter.Abilities.Charisma.BaseValue, Mode=TwoWay}" />--> |  | ||||||
|             </StackLayout> |  | ||||||
|         </ScrollView> |         </ScrollView> | ||||||
|     </ContentView.Content> |     </ContentView.Content> | ||||||
| </ContentView> | </ContentView> | ||||||
|  | @ -13,16 +13,14 @@ | ||||||
|         x:Name="This" |         x:Name="This" | ||||||
|         Title="Création de personnage" |         Title="Création de personnage" | ||||||
|         android:TabbedPage.IsSwipePagingEnabled="True"> |         android:TabbedPage.IsSwipePagingEnabled="True"> | ||||||
|     <!--SelectedTabColor="{StaticResource HDRed}" |  | ||||||
|         UnselectedTabColor="{StaticResource HDMidGrey}"--> |  | ||||||
|     <CarouselPage.Resources> |     <CarouselPage.Resources> | ||||||
|         <StyleSheet> |         <StyleSheet> | ||||||
|             < Yan Maniez
						Yan Maniez