Windows Phone のピボット グリッドに表示する背景画像を取得できません。コードは次のとおりです。
<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot">
<Grid.Background>
<ImageBrush ImageSource="/BackgroundImage.jpg"/>
</Grid.Background>
「/」を付けて、egなしで試してみました
<ImageBrush ImageSource="BackgroundImage.jpg"/>
そして
<ImageBrush ImageSource="/BackgroundImage.jpg"/>
どちらもデザイン ビューで背景画像を表示しますが、エミュレーターやデバイスでは表示しません。何か助けはありますか?(これはメインのアプリの背景用です)。