Jump to content
LaunchBox Community Forums

ethoronath

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by ethoronath

  1. Thanks, I have solved it putting the Screenshot - Game Play in the folder Banner, and using this line of code.

     

    <!-- IMAGE SCREEN START -->
                <Image x:Name="ImageScreen" Grid.Column="14" Grid.Row="11" Source="{Binding Path=ActiveGame.BannerImagePath}" HorizontalAlignment="Center" VerticalAlignment="Center"
                       Stretch="Fill" Panel.ZIndex="2" />
                <!-- IMAGE SCREEN END -->

     

  2. Hi all, I try show in my theme two images, "Screenshot - Game Title" and "Screenshot - Gameplay"

    This is my code.....

    I know that "Path=ActiveGame.ScreenshotGameplayImagePath" it's not correct, and it's correct "Path=ActiveGame.ScreenshotImagePath" but It's posible show the 2 images at time???

    Spoiler

                <!-- IMAGE TITLE START -->
                <Image x:Name="ImageTitle" Grid.Column="12" Grid.Row="11" Source="{Binding Path=ActiveGame.ScreenshotImagePath}" HorizontalAlignment="Center" VerticalAlignment="Center"
                       Stretch="Fill" Panel.ZIndex="2" >
                </Image>
                <!-- IMAGE TITLE END -->

                <!-- IMAGE SCREEN START -->
                <Image x:Name="ImageScreen" Grid.Column="14" Grid.Row="11" Source="{Binding Path=ActiveGame.ScreenshotGameplayImagePath}" HorizontalAlignment="Center" VerticalAlignment="Center"
                       Stretch="Fill" Panel.ZIndex="2" />
                <!-- IMAGE SCREEN END -->

     

×
×
  • Create New...