
wallmachine
Members-
Posts
942 -
Joined
-
Last visited
-
Days Won
4
Content Type
Profiles
Forums
Articles
Downloads
Gallery
Blogs
Everything posted by wallmachine
-
with the following say the {1} CPU information was missing is it possible to move Category to {1} so we don't have the white space that is created from {1} CPU because of no data. I guess this would work vice versa. <TextBlock> <TextBlock.Text> <MultiBinding StringFormat="{}{0:yyyy} · {1} {2}" > <Binding Path="SelectedPlatform.ReleaseDate" /> <Binding Path="SelectedPlatform.Cpu" /> <Binding Path="SelectedPlatform.Category" /> </MultiBinding> </TextBlock.Text> </TextBlock>
-
yes it scales but im not allowed to set a custom width/height without it pushing the textlist apart.
-
^ What master @Kondorito said
-
@Grila with the following would you have an idea on how to resize an ellipse upon resolution change in the ListBoxItemStyle? I find that whether its in a viewbox/canvas as it has a fixed width/height it does not change upon resolution change. I tried the similar datatriggers you showed me for resolution change but bigbox just throws an error upon opening. <DockPanel x:Name="Bd"> <Grid Width="20" Height="20"> <Ellipse x:Name="Dot" Visibility="Hidden" Fill="Blue" Stretch="Fill"/> </Grid> <ContentPresenter HorizontalAlignment="Stretch" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Content="{TemplateBinding Content}" ContentStringFormat="{TemplateBinding ContentStringFormat}" ContentTemplate="{TemplateBinding ContentTemplate}" SnapsToDevicePixels="True" /> </DockPanel>
-
@Grila i had to try and thanks the datatriggers worked. hope the same will be for the Ellipse when i try it tomorrow.
-
ahk hopefully he can chime in so you can include in your plugin.
-
Thanks will try tomorrow got to get to bed. Would you know why in listbox it would set the font auto? Just trying to understand it better
-
ahk yeah i've had experience before with setting like you done in your previous example and font resizing shame with listview, no idea whats going on doesn't work. Just wondering with the listbox view before I never had to set a font it would automatically detect it. <viewbox> <dockpanel> <textblock fontsize="34"/> </dockpanel> </viewbox> or <viewbox> <canvas> <control fontsize="34" /> </canvas> </viewbox>
-
I had to restart something wrong with VS. Below is the result of the new plugin, hope it helps somehow <transitions:TransitionPresenter TransitionSelector="{Binding ListTransitionSelector}" Content="{Binding ListView}" Grid.Column="3" Grid.Row="3" Grid.RowSpan="9" /> <lbsc:GameList Name="Items" FontSize="34"> <i:Interaction.Triggers> <i:EventTrigger EventName="MouseDoubleClick"> <cal:ActionMessage MethodName="OnEnter" /> </i:EventTrigger> </i:Interaction.Triggers> </lbsc:GameList>
-
-
unfortunately i cannot get it to work no matter what.
-
Yeah same.. only one that causes me issues is textlist view what a shame. Thanks for your help. wish this was a 'theme engine' not a 'grid engine'.
-
unfortunately it doesn't stay the same size if i'm creating an ellipse or use an image under ControlTemplate, must be something to do with the ContentPresenter. Yes to not have the dot in the menu and to have different colours/highlights, also when using the fontsize in the plugin for me it doesn't change upon resolution change.
-
I guess also on a side note do you know how to make an Ellipse responsive for resolution changing? Output:
-
@Grila thanks for your ListBoxScrollCenter plugin. Could you help me with the following? before i was able to use <Style="{DynamicResource ListBoxStyle}"> to change just the colour/font, etc of the TextListView only and it wouldn't effect the menu colour/font, etc. With the plugin now I need to change the values in ListBoxItemStyle (unless I don't?) and it changes everything in the TextListView/Menus. I'm not sure of how to just change the TextListView with your plugin.
-
I envy you. This definitely did not take me 10 seconds...
-
@Grila will it allow us to add a dot or some other representation? example.
-
ahk, just wondering how does the WheelGamesView coverflow start in the middle?
-
Thanks! @Grila I'm guessing some small things are like once you enter the view its already in the center?
-
thanks for that its working now. i did try this but for some reason it did not work, rebuilt the dll just then maybe because i made some changes and stuff something up. note to self don't change shit i don't know.
-
@Grila I'm guessing i'll need a total new plugin for the following? i tried replacing your code with https://msdn.microsoft.com/en-us/library/system.windows.data.imultivalueconverter.aspx but it just keeps crashing bigbox any ideas? Said object[] value can't be a string.
-
Thanks all working now, well it was a stab in the dark on the project selection lol
-
I'll try this. No idea what to do with this... This is what I've attempted. Had a look at this https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.data.ivalueconverter and this https://msdn.microsoft.com/en-us/library/system.windows.data.ivalueconverter(v=vs.110).aspx bur really no idea what I'm doing.
-
Is it possible to have a transition effect on the following? <Image Source="{Binding Path=SelectedPlatform.BannerImagePath}" /> <Image Source="{Binding Path=SelectedPlatform.DeviceImagePath}" /> Also anyway to make text that is not uppercase, uppercase? Typography.Capitals does not work