-
Posts
590 -
Joined
-
Last visited
-
Days Won
29
Content Type
Profiles
Forums
Articles
Downloads
Gallery
Blogs
Everything posted by Grila
-
-
-
@Jason Carr @wallmachine The control is set to use the ListBoxStyle (Style="{DynamicResource ListBoxStyle}"). Must have gotten broken with the recent changes regarding the styles. I did it that way on all my plugins so they could just be dropped in to a theme and use the existing theme style. Here's a shot of the code...
-
- 8 comments
-
-
Yes, cropped at 1080x1080
-
That property is in the BoxListBoxItemStyle.xaml inside the Styles directory. You should be able to spot the color hex codes pretty easily.
-
BoxesGamesView.xaml -> line 44 It's wrapped in a viewbox though, so if you want to change the size you'll need to delete the viewbox.
-
I believe it would if you tightened up the opacity mask... EDIT: Ahh, I see what your getting at. The second logo is actually behind the selected one. That is impossible with the current implementation of the wheel.
-
My Fundamental theme has the wheel opacity effect achieved with an opacity mask for the wheel. The selected game is 100, and it drops to zero in both directions (up and down).
-
I've installed it for you @bundangdon. Replace the corresponding file in the Unified Redux\Views folder with this one: TextListView.xaml Put the plugin DLL (unblock as needed) in the Unified Redux\Plugins directory: ListBoxScrollCenter.dll Here's a quick video of it working:
-
Bounty: BigBox full console-like theme
Grila replied to alfredolvera's topic in Big Box Custom Themes
Hey...I feel slighted ?? Joking. But honestly I can say that the current BigBox grid view lacks some very important features, mainly a way to denote the selected item (like the horizontal box view). In it's current state, all you can do is zoom the selected item. I've been meaning to address the grid view with a plugin to make it better, but have been caught up in other things.- 45 replies
-
- bounty
- help wanted
-
(and 1 more)
Tagged with:
-
-
-
-
<Rectangle x:Name="KeyRectangle" Grid.Column="5" Fill="{Binding SelectionBackgroundBrush, UpdateSourceTrigger=PropertyChanged, NotifyOnTargetUpdated=True}" Visibility="Collapsed"> <Rectangle.Triggers> <EventTrigger RoutedEvent="Binding.TargetUpdated"> <BeginStoryboard> <Storyboard> <ColorAnimation Storyboard.TargetName="brush1" Storyboard.TargetProperty="Color" To="{Binding Fill.Color, ElementName=KeyRectangle}" Duration="0:0:0.5" /> </Storyboard> </BeginStoryboard> </EventTrigger> </Rectangle.Triggers> </Rectangle> <controls:VolumeKnobControl Grid.Column="5" FillBrush="{Binding ForegroundBrush}" Value="{Binding Path=VolumeValue, Mode=TwoWay}" HorizontalAlignment="Right" Focusable="True" IsTabStop="True" FocusVisualStyle="{StaticResource FocusVisualStyle}" Padding="10,0,10,0" Margin="0,2,0,2"> <controls:VolumeKnobControl.HighlightBrush> <SolidColorBrush x:Name="brush1" Color="{Binding ElementName=KeyRectangle, Path=Fill.Color}" /> </controls:VolumeKnobControl.HighlightBrush> </controls:VolumeKnobControl>
-
-
-
Since the Windows 10 redesign, Microsoft has a new brush in it's Universal Windows Platform (UWP) called Acrylic. If you're running Windows 10 and have transparency effects enabled, I'm sure you've noticed Acrylic, most notably on the Start Menu and the Notification Center. Since Acrylic isn't available in WPF, I found a library called BlurryControls on GitHub that mimics the behavior. Here's a little example of it in LaunchBox.
- 3 replies
-
- 12
-
Oh @neil9000 it's no bother to me I'm just dumbfounded on how a plugin could have any unintentional effect on theme colors...
-
It looks like it's changing the background of the sidebar. In the code it's set to Black, 0.3 opacity. I guess I'm not sure what you mean about default colors...or how/why a plugin would have any effect on that.
-
-
PC Engine CD clear logo and HD start screen request
Grila replied to alexis524's topic in Platform Media
-
Also I'm guessing that Bebas Neue type font doesn't have a true semi-bold weight.
-
I got it... I have it set to make the selected item's font semi-bold. When you select a top level item like that, it applies the font-weight to the whole list. I remember I was trying to overcome this when I was making the theme, but never figured it out. So...that's the problem. And now, I'm back to the drawing board to see if I can solve it.