shinra358 Posted February 22, 2018 Share Posted February 22, 2018 @Jason CarrThat wouldnt work because game resources arent implemented in the theme folder. Quote Link to comment Share on other sites More sharing options...
wallmachine Posted February 23, 2018 Share Posted February 23, 2018 4 hours ago, Jason Carr said: I honestly don't know; you should be able to bind to the SelectedGame.VideoPath property, but I haven't tested it. Im getting an error saying no SelectedGame.VideoPath. im assuming i just dont know how to bind it correctly, can someone provide an example. Quote Link to comment Share on other sites More sharing options...
Jason Carr Posted February 23, 2018 Author Share Posted February 23, 2018 Should be like this I believe: <videos:VideoControl VideoPath="{Binding SelectedGame.VideoPath}" /> That's from memory but I think that's it. Quote Link to comment Share on other sites More sharing options...
wallmachine Posted February 23, 2018 Share Posted February 23, 2018 (edited) 1 hour ago, Jason Carr said: Should be like this I believe: <videos:VideoControl VideoPath="{Binding SelectedGame.VideoPath}" /> That's from memory but I think that's it. i hope someone can chime in on this for transitions and stretching, as using Binding ImageVideoView does not allow you to stretch it nor do transitions work for VideoControl. <videos:VideoControl VideoPath="{Binding SelectedGame.VideoPath}" Content="{Binding ImageVideoView}" /> Edited February 23, 2018 by wallmachine Quote Link to comment Share on other sites More sharing options...
wallmachine Posted February 23, 2018 Share Posted February 23, 2018 (edited) is it possible to remove 'Recen't and 'Favorite' text i can't find the view/style for it... or even customize it at all to set a certain amount of boxes to display? <transitions:TransitionPresenter TransitionSelector="{Binding TopBoxesTransitionSelector}" Content="{Binding TopBoxesView}" /> <transitions:TransitionPresenter TransitionSelector="{Binding BottomBoxesTransitionSelector}" Content="{Binding BottomBoxesView}" /> Edited February 23, 2018 by wallmachine Quote Link to comment Share on other sites More sharing options...
shinra358 Posted February 24, 2018 Share Posted February 24, 2018 17 hours ago, wallmachine said: i hope someone can chime in on this for transitions and stretching, as using Binding ImageVideoView does not allow you to stretch it nor do transitions work for VideoControl. <videos:VideoControl VideoPath="{Binding SelectedGame.VideoPath}" Content="{Binding ImageVideoView}" /> Eatkinola's plugin fixes this or you can remove the images and have them read from somewhere else and use backgroundview instead. Background view allows stretching automatically. I posted another method another ways back in this thread about using scaling. But the problem with that is that it only works correctly in the resolution you code it in. Quote Link to comment Share on other sites More sharing options...
eatkinola Posted February 24, 2018 Share Posted February 24, 2018 36 minutes ago, wallmachine said: is it possible to remove 'Recen't and 'Favorite' text i can't find the view/style for it... or even customize it at all to set a certain amount of boxes to display? Look in ThumbnailListView.xaml -- example from Minimal-AO: <UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:cal="http://www.caliburnproject.org" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> <DockPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> <!-- NOTE: Collapsed/hid the Title (Recent/Favorites) so I could create my own title... --> <TextBlock Name="Title" DockPanel.Dock="Top" Foreground="White" FontFamily="Calibri" Visibility="Collapsed"/> <ListBox Name="Items" Style="{DynamicResource ThumbnailListBoxStyle}" SelectedItem="{Binding SelectedItem}"> <i:Interaction.Triggers> <i:EventTrigger EventName="MouseDoubleClick"> <cal:ActionMessage MethodName="OnEnter" /> </i:EventTrigger> </i:Interaction.Triggers> </ListBox> </DockPanel> </UserControl> 1 Quote Link to comment Share on other sites More sharing options...
wallmachine Posted February 24, 2018 Share Posted February 24, 2018 6 minutes ago, shinra358 said: Eatkinola's plugin fixes this or you can remove the images and have them read from somewhere else and use backgroundview instead. Background view allows stretching automatically. I posted another method another ways back in this thread about using scaling. But the problem with that is that it only works correctly in the resolution you code it in. yeah i know the plugin fixes it but it crashes. if the bigbox volume is set to 0% Quote Link to comment Share on other sites More sharing options...
wallmachine Posted February 24, 2018 Share Posted February 24, 2018 (edited) Is it possible to do the following with PlatformWheel1FiltersView.xaml? Example: to enter the fav wheel use up arrow and then to cycle through use right or left arrow, then for the recent wheel press down and then left and right arrow to cycle through list. <transitions:TransitionPresenter TransitionSelector="{Binding TopBoxesTransitionSelector}" Content="{Binding TopBoxesView}" /> <transitions:TransitionPresenter TransitionSelector="{Binding BottomBoxesTransitionSelector}" Content="{Binding BottomBoxesView}" /> Also does anyone know how to remove the semi-colon from Genres and place a comma , or something else in-between? Edited February 25, 2018 by wallmachine Quote Link to comment Share on other sites More sharing options...
wallmachine Posted February 26, 2018 Share Posted February 26, 2018 With <transitions:TransitionPresenter TransitionSelector="{Binding TopBoxesTransitionSelector}" Content="{Binding TopBoxesView}" /> is it possible to display a certain amount of favorites to list? Quote Link to comment Share on other sites More sharing options...
Jack. Posted February 26, 2018 Share Posted February 26, 2018 I have this: <transitions:TransitionPresenter Grid.Column="1" Grid.Row="5" TransitionSelector="{Binding BottomBoxesTransitionSelector}" Content="{Binding BottomBoxesView}"/> How can i make the Boxes adapt to the grid? so if the grid is bigger the boxes are also bigger, but maintaining aspect ratio. Thanks. Quote Link to comment Share on other sites More sharing options...
latin625 Posted February 27, 2018 Share Posted February 27, 2018 Maybe on the next wishlist for Launchbox, we have a "drag and drop" Theme maker for others to use to make themes that dont know or are comfortable with XAML? Quote Link to comment Share on other sites More sharing options...
Rincewind Posted February 27, 2018 Share Posted February 27, 2018 "drag and drop" would be amazing but and it's a massive but, I don't think will happen for a long while Quote Link to comment Share on other sites More sharing options...
faeran Posted February 27, 2018 Share Posted February 27, 2018 I've got 2 issues I'm hoping someone knows how to solve: I need a way to change the text size of the text list box. Any changes I try to make in the ListBoxItemStyle.xaml or ListBoxStyle.xaml seem to not be effective. Anyone notice that the text list box seems to never have the border on the right side? I need to get it to show, but I can't seem to figure out how. You can see that it's missing if you try to add a border around each text item, or try to add a corner radius. The right side seems to always be transparent/missing, while the other sides show. Any help is appreciated. Quote Link to comment Share on other sites More sharing options...
Mr. RetroLust Posted March 31, 2018 Share Posted March 31, 2018 (edited) I'm working on a theme and would like to use the images in the arcade section as well, like cabinet, marquee and controls for instance. Anyone know which code I should use for a selected game? At the moment I'm using the images for Arcade Cabinet as Front Cart but this is very limited as I need big cabinet images and smaller Cart images seperatly in the same layout. Any help would be very appreciated! !Update!: Never mind I use the 3D Cart placeholder for Arcade Cabinets now. Edited March 31, 2018 by Mr. RetroLust Quote Link to comment Share on other sites More sharing options...
y2guru Posted April 9, 2018 Share Posted April 9, 2018 (edited) @Jason Carr Have you messed around with PlaneProjection? I get unknown member type .PlaneProjection :-( <Image.Projection> <PlaneProjection RotationX="-35" /> </Image.Projection> Edited April 9, 2018 by y2guru Quote Link to comment Share on other sites More sharing options...
Jason Carr Posted April 9, 2018 Author Share Posted April 9, 2018 2 hours ago, y2guru said: @Jason Carr Have you messed around with PlaneProjection? I get unknown member type .PlaneProjection :-( <Image.Projection> <PlaneProjection RotationX="-35" /> </Image.Projection> As far as I can immediately tell, PlaneProjection is only for Silverlight, so it doesn't work in WPF. Quote Link to comment Share on other sites More sharing options...
wallmachine Posted April 13, 2018 Share Posted April 13, 2018 does anyone know how to achieve this? Quote Link to comment Share on other sites More sharing options...
bundangdon Posted April 13, 2018 Share Posted April 13, 2018 27 minutes ago, wallmachine said: does anyone know how to achieve this? Keeping the selected title centered? I've requested this feature a few times before and still waiting Quote Link to comment Share on other sites More sharing options...
wallmachine Posted April 13, 2018 Share Posted April 13, 2018 (edited) 32 minutes ago, bundangdon said: Keeping the selected title centered? I've requested this feature a few times before and still waiting yeah same... + change the colour of selected title, only a select few know how to create plugins. Edited April 13, 2018 by wallmachine Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.