Hi faeran!
I'm using your VisioN custom theme. Really like it and makes BigBox looks very cool! 🙂
I just wanna make 3 little modifications on it for my personal use:
1 - Make the game screenshot and video bigger.
2 - Wanna prioritize the video over screenshot (only show the screenshot if there is no video).
3 - Keep screenshot/video centered on the last grid row.
I did the first one, editing the file HorizontalWheel2GamesView.xaml and changing the RowDefinition values by (line 436):
<Grid.RowDefinitions>
<RowDefinition Height="23*"/>
<RowDefinition Height="4.0*"/>
<RowDefinition Height="0.2*"/>
<RowDefinition Height="10.8*"/>
<RowDefinition Height="1.0*"/>
</Grid.RowDefinitions>
I'm trying the second modification, but I cant get it working. I made something like an if-else using "DataTrigger", but screenshot keeps showing even when there's a video for the selected game.
Also trying to keep screenshot and video centered. When I get just the screenshot the HorizontalAlignment="Center" works, but when I force just the video it keeps aligned to the right or left.
Can you pls help me?