- March 24, 2007
- 12,073
- 7,459
- Home Country
- Germany
- Moderator
- #141
This way it won't work (or at least it's not intended this way).Idea is, that the the fanart size is fixed based on the active "view"."30715D73-4205-417f-80AA-E82F0834171F" is the ID for "Audio".
Maybe start from another point of view:
The screens that are showing MediaItems are coming originally from the MediaPlugin: https://github.com/MediaPortal/Medi...ce/UI/UiComponents/Media/Skin/default/screens.
You see 5 AudioFilterBy... xaml screens and one https://github.com/MediaPortal/Medi...edia/Skin/default/screens/AudioShowItems.xaml.
This screen includes the known "SimpleShowItems.xaml".
So if you like to adjust only Audio item's screen a valid approach would be to copy this screen into your skin and modify it your way.
You could consider to change the SimpleShowItems.xaml as well, i.e. adding "parameters" for right side client area size. This could be done by:
1) Defining a resource inside AudioShowItems (<ResourceWrapper x:Key="Cover_Width" Resource="500"/>)
2) Using a {DynamicResource Cover_Width} markup for the right side Width property
This way you can have a generic master page for all items (SimpleShowItems), where the "parent" screens can define different resources (widths), i.e. Audio 500, Movie 400.
Does this help?