1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2026-03-23 07:16:17 +00:00
This commit is contained in:
Yan Maniez 2018-08-11 23:46:29 +02:00
parent 97f3f29788
commit 91f21e3c54
5 changed files with 289 additions and 135 deletions

View file

@ -16,6 +16,7 @@ namespace AideDeJeuLib
"## [Races](races_hd.md)\n\n" +
"## [Classes](classes_hd.md)\n\n" +
"## [Équipement](equipment_hd.md)\n\n" +
"## [Options](options_hd.md)\n\n" +
"## [Dons](feats_hd.md)\n\n" +
"## [Caractéristiques](abilities_hd.md)\n\n" +
"## [États spéciaux](conditions_hd.md)\n\n" +

View file

@ -56,8 +56,8 @@
<DataTemplate>
<ViewCell AutomationProperties.IsInAccessibleTree="True" AutomationId="machin" AutomationProperties.Name="hop">
<StackLayout Padding="10" Orientation="Vertical">
<Label Text="{Binding Name}" LineBreakMode="NoWrap" Style="{DynamicResource subsubsection}" FontSize="16" />
<Label Text="{Binding AltNameText}" LineBreakMode="NoWrap" Style="{DynamicResource subsubsection}" FontSize="12" />
<Label Text="{Binding Name}" LineBreakMode="WordWrap" Style="{DynamicResource subsubsection}" FontSize="16" />
<Label Text="{Binding AltNameText}" LineBreakMode="WordWrap" Style="{DynamicResource subsubsection}" FontSize="12" />
</StackLayout>
</ViewCell>
</DataTemplate>

View file

@ -30,8 +30,8 @@
<DataTemplate>
<ViewCell AutomationProperties.IsInAccessibleTree="True" AutomationId="machin" AutomationProperties.Name="hop">
<StackLayout Padding="10" Orientation="Vertical">
<Label Text="{Binding Name}" LineBreakMode="NoWrap" Style="{Binding NameLevel,Converter={StaticResource HeaderLevelToStyleConverter}}" />
<Label Text="{Binding AltNameText}" LineBreakMode="NoWrap" Style="{DynamicResource subsubsection}" FontSize="12" />
<Label Text="{Binding Name}" LineBreakMode="WordWrap" Style="{Binding NameLevel,Converter={StaticResource HeaderLevelToStyleConverter}}" />
<Label Text="{Binding AltNameText}" LineBreakMode="WordWrap" Style="{DynamicResource subsubsection}" FontSize="12" />
</StackLayout>
</ViewCell>
</DataTemplate>