Alex
Alex

Reputation: 11147

make background go fullscreen

I would like my silverlight background to be fullscreen. Now, i am setting my background as :

<Grid.Background>
      <ImageBrush ImageSource="/_Assets/Layout/family-tree-bg.jpg"/>
  </Grid.Background>

but there is still the black bar that holds the battery, clock, signal etc. How can my background cover this zone also?

Upvotes: 0

Views: 303

Answers (1)

Ku6opr
Ku6opr

Reputation: 8126

Make an System Tray transparent: (work for WP 7.5 only)

 shell:SystemTray.Opacity="0"

Or just make it invisible:

 shell:SystemTray.IsVisible="True"

Upvotes: 1

Related Questions