|
3905 | 3905 | <DataTemplate>
|
3906 | 3906 | <StackPanel>
|
3907 | 3907 | <ContentControl x:Name="base" ls:MoveFocus.Focusable="True" Focusable="True" Template="{StaticResource AppearanceListButtonTemplateShort}" HorizontalAlignment="Center">
|
3908 |
| - <Control Template="{StaticResource ColorOptionTickBoxTemplate}" /> |
| 3908 | + <Control Template="{StaticResource ColorOptionTickBoxTemplate}" /> |
3909 | 3909 | </ContentControl>
|
3910 | 3910 | </StackPanel>
|
| 3911 | + <!-- MOD START - Hide all sliders since sliders are now added to the main page --> |
| 3912 | + <DataTemplate.Triggers> |
| 3913 | + <DataTrigger Binding="{Binding ListItemType}" Value="Slider"> |
| 3914 | + <Setter TargetName="base" Property="Visibility" Value="Collapsed"/> |
| 3915 | + </DataTrigger> |
| 3916 | + </DataTemplate.Triggers> |
| 3917 | + <!-- MOD END --> |
3911 | 3918 | </DataTemplate>
|
3912 | 3919 | </Setter.Value>
|
3913 | 3920 | </Setter>
|
|
5467 | 5474 |
|
5468 | 5475 | <StackPanel x:Name="tattooChoices" Visibility="{Binding IsDragonborn, Converter={StaticResource BoolToCollapsedConverter}}">
|
5469 | 5476 | <ListBox Tag="tattoos" ItemsSource="{Binding SelectableTattoos}" SelectedItem="{Binding SelectedTattoo}" Template="{StaticResource AppearanceCarousel}" Visibility="{Binding SelectableTattoos.Count, Converter={StaticResource CountToVisibilityConverter}}" Style="{StaticResource sliderListBoxStyle}"/>
|
5470 |
| - |
5471 |
| - <ListBox Tag="tattooColors" ItemsSource="{Binding SelectableTattooColours}" SelectedItem="{Binding SelectedTattooColour}" Template="{StaticResource AppearanceCarousel}" Visibility="{Binding AppearanceTattoos.EmptyMaterialSelected, Converter={StaticResource BoolToCollapsedConverter}}" Style="{StaticResource sliderListBoxStyle}"/> |
| 5477 | + <!-- MOD START - Add makeup color sliders --> |
| 5478 | + <StackPanel Visibility="{Binding AppearanceTattoos.EmptyMaterialSelected, Converter={StaticResource BoolToCollapsedConverter}}"> |
| 5479 | + <ListBox Tag="tattooColors" ItemsSource="{Binding SelectableTattooColours}" SelectedItem="{Binding SelectedTattooColour}" Template="{StaticResource AppearanceCarousel}" Style="{StaticResource sliderListBoxStyle}"/> |
| 5480 | + <ListBox x:Name="tattooIntensity" Tag="{StaticResource FalseValue}" ls:AttachedProperties.InheritedTag="highlightIntensity" DataContext="{Binding AppearanceTattoos.ColorOptions[0]}" Template="{StaticResource AppearanceSliderCarousel}"/> |
| 5481 | + </StackPanel> |
| 5482 | + <!-- MOD END --> |
5472 | 5483 | </StackPanel>
|
5473 | 5484 |
|
5474 | 5485 | <ListBox Tag="piercing" ItemsSource="{Binding SelectablePiercings}" SelectedItem="{Binding SelectedPiercing}" Template="{StaticResource AppearanceCarousel}" Visibility="{Binding SelectablePiercings.Count, Converter={StaticResource CountToVisibilityConverter}}" Style="{StaticResource sliderListBoxStyle}" />
|
|
5480 | 5491 | <ListBox Tag="makeup" ItemsSource="{Binding SelectableMakeup}" SelectedItem="{Binding SelectedMakeup}" Template="{StaticResource AppearanceCarousel}" Visibility="{Binding SelectableMakeup.Count, Converter={StaticResource CountToVisibilityConverter}}" Style="{StaticResource sliderListBoxStyle}"/>
|
5481 | 5492 |
|
5482 | 5493 | <ListBox Tag="makeupColors" ItemsSource="{Binding SelectableMakeupColours}" SelectedItem="{Binding SelectedMakeupColour}" Template="{StaticResource AppearanceCarousel}" Visibility="{Binding AppearanceMakeup.EmptyMaterialSelected, Converter={StaticResource BoolToCollapsedConverter}}" Style="{StaticResource sliderListBoxStyle}"/>
|
| 5494 | + <!-- MOD START - Add makeup color sliders --> |
| 5495 | + <StackPanel Visibility="{Binding AppearanceMakeup.EmptyMaterialSelected, Converter={StaticResource BoolToCollapsedConverter}}"> |
| 5496 | + <ListBox x:Name="makeupColorIntensity" Tag="{StaticResource FalseValue}" ls:AttachedProperties.InheritedTag="highlightIntensity" DataContext="{Binding AppearanceMakeup.ColorOptions[0]}" Template="{StaticResource AppearanceSliderCarousel}"/> |
| 5497 | + <ListBox x:Name="makeupMetallicIntensity" Tag="{StaticResource FalseValue}" ls:AttachedProperties.InheritedTag="metallicIntensity" DataContext="{Binding AppearanceMakeup.ColorOptions[1]}" Template="{StaticResource AppearanceSliderCarousel}"/> |
| 5498 | + <ListBox x:Name="makeupGlossyIntensity" Tag="{StaticResource FalseValue}" ls:AttachedProperties.InheritedTag="glossyIntensity" DataContext="{Binding AppearanceMakeup.ColorOptions[2]}" Template="{StaticResource AppearanceSliderCarousel}"/> |
| 5499 | + </StackPanel> |
| 5500 | + <!-- MOD END --> |
5483 | 5501 |
|
5484 | 5502 | <!-- MOD START - Hide lip makeup based on if eye makeup is available (doesn't show for Origin characters) -->
|
5485 | 5503 | <StackPanel Visibility="{Binding SelectableMakeup.Count, Converter={StaticResource CountToVisibilityConverter}}">
|
5486 | 5504 | <ListBox Tag="lipMakeupColors" ItemsSource="{Binding SelectableLipsMakeupColours}" SelectedItem="{Binding SelectedLipsMakeupColour}" Template="{StaticResource AppearanceCarousel}" Style="{StaticResource sliderListBoxStyle}"/>
|
5487 | 5505 | <ListBox x:Name="lipColorIntensity" Tag="{StaticResource FalseValue}" ls:AttachedProperties.InheritedTag="lipColorIntensity" DataContext="{Binding AppearanceLipsMakeup.ColorOptions[0]}" Template="{StaticResource AppearanceSliderCarousel}"/>
|
5488 |
| - <ListBox x:Name="metallicIntensity" Tag="{StaticResource FalseValue}" ls:AttachedProperties.InheritedTag="metallicIntensity" DataContext="{Binding AppearanceLipsMakeup.ColorOptions[1]}" Template="{StaticResource AppearanceSliderCarousel}"/> |
5489 |
| - <ListBox x:Name="glossyIntensity" Tag="{StaticResource FalseValue}" ls:AttachedProperties.InheritedTag="glossyIntensity" DataContext="{Binding AppearanceLipsMakeup.ColorOptions[2]}" Template="{StaticResource AppearanceSliderCarousel}"/> |
| 5506 | + <ListBox x:Name="lipMetallicIntensity" Tag="{StaticResource FalseValue}" ls:AttachedProperties.InheritedTag="metallicIntensity" DataContext="{Binding AppearanceLipsMakeup.ColorOptions[1]}" Template="{StaticResource AppearanceSliderCarousel}"/> |
| 5507 | + <ListBox x:Name="lipGlossyIntensity" Tag="{StaticResource FalseValue}" ls:AttachedProperties.InheritedTag="glossyIntensity" DataContext="{Binding AppearanceLipsMakeup.ColorOptions[2]}" Template="{StaticResource AppearanceSliderCarousel}"/> |
5490 | 5508 | </StackPanel>
|
5491 | 5509 | <!-- MOD END -->
|
5492 | 5510 |
|
|
6143 | 6161 | </b:Interaction.Triggers>
|
6144 | 6162 |
|
6145 | 6163 | <TextBlock ls:TextBlockFormatter.SourceText="{Binding Source='h6ed36c54g1a3dg4c46g9987gd5882613ae05', Converter={StaticResource TranslatedStringConverter}}" Style="{StaticResource OverPanelHeaderText}"/>
|
| 6164 | +<!-- MOD NOTE - Re-add color options --> |
| 6165 | + <ItemsControl Style="{DynamicResource ColorOptionsStyle}" ItemsSource="{Binding HairColorOptions}" Margin="0,50,0,0"/> |
6146 | 6166 |
|
6147 | 6167 | <ListBox ItemsSource="{Binding SelectableHairColours}" SelectedItem="{Binding SelectedHairColour}" ItemTemplate="{StaticResource selectableColourTemplate}" Style="{StaticResource appearanceOverpanelListBoxStyle}" Margin="0,50,0,0"/>
|
6148 | 6168 |
|
|
6164 | 6184 | </b:Interaction.Triggers>
|
6165 | 6185 |
|
6166 | 6186 | <TextBlock ls:TextBlockFormatter.SourceText="{Binding Source='h9d4a4e08g81cdg4259g8bd1g80b47dbda3f3', Converter={StaticResource TranslatedStringConverter}}" Style="{StaticResource OverPanelHeaderText}"/>
|
| 6187 | +<!-- MOD NOTE - Re-add color options --> |
| 6188 | + <ItemsControl Style="{StaticResource ColorOptionsStyle}" ItemsSource="{Binding AppearanceHairHighlights.ColorOptions}" Margin="0,50,0,0"/> |
6167 | 6189 |
|
6168 | 6190 | <ListBox ItemsSource="{Binding SelectableHighlightColours}" SelectedItem="{Binding SelectedHighlightColour}" ItemTemplate="{StaticResource selectableColourTemplate}" Style="{StaticResource appearanceOverpanelListBoxStyle}" Margin="0,50,0,0"/>
|
6169 | 6191 |
|
|
6247 | 6269 | </b:Interaction.Triggers>
|
6248 | 6270 |
|
6249 | 6271 | <TextBlock ls:TextBlockFormatter.SourceText="{Binding Source='h8f9581e8g4440g4cf5g8752g220535346a50', Converter={StaticResource TranslatedStringConverter}}" Style="{StaticResource OverPanelHeaderText}"/>
|
| 6272 | +<!-- MOD NOTE - Re-add color options --> |
| 6273 | + <ItemsControl Style="{StaticResource ColorOptionsStyle}" ItemsSource="{Binding AppearanceHornColor.ColorOptions}" Margin="0,50,0,0"/> |
6250 | 6274 |
|
6251 | 6275 | <ListBox ItemsSource="{Binding SelectableHornColours}" SelectedItem="{Binding SelectedHornColour}" ItemTemplate="{StaticResource selectableColourTemplate}" Style="{StaticResource appearanceOverpanelListBoxStyle}" Margin="0,50,0,0"/>
|
6252 | 6276 |
|
|
6268 | 6292 | </b:Interaction.Triggers>
|
6269 | 6293 |
|
6270 | 6294 | <TextBlock ls:TextBlockFormatter.SourceText="{Binding Source='h33ea2bd3g91cag471cg8242gef7327983dbf', Converter={StaticResource TranslatedStringConverter}}" Style="{StaticResource OverPanelHeaderText}"/>
|
| 6295 | +<!-- MOD NOTE - Re-add color options --> |
| 6296 | + <ItemsControl Style="{StaticResource ColorOptionsStyle}" ItemsSource="{Binding AppearanceHornTipColor.ColorOptions}" Margin="0,50,0,0"/> |
6271 | 6297 |
|
6272 | 6298 | <ListBox ItemsSource="{Binding SelectableHornTipColours}" SelectedItem="{Binding SelectedHornTipColour}" ItemTemplate="{StaticResource selectableColourTemplate}" Style="{StaticResource appearanceOverpanelListBoxStyle}" Margin="0,50,0,0"/>
|
6273 | 6299 |
|
|
0 commit comments