vote up 1 vote down star

I have a 800x600 screen resolution silverlight application.When i use the code to make it full screen, ( i have current screen resolution of 1280x1024) it shows white background around my 800x600 black box.

i tried changing canvas background color and UserControl background color property but no effects.

is there any way to change the background color in full screen mode ?

flag

2 Answers

vote up 0 vote down check

I'm assuming that you're hosting the control on an aspx page?

Have you tried setting BackColor on the Silverlght control?

<asp:Silverlight ID="slControl" BackColor="Black" runat="server" Source="~/ClientBin/TestApp.xap" MinimumVersion="2.0.31005.0" Width="800" Height="600" />
link|flag
Thank you for the answer, but i already have aspx page body background color = black. – bugBurger Jun 16 at 13:21
vote up 0 vote down

You have to set the silverlight control to use up all the space of the page. Set the Width and Height properties to Auto. Then the background will be set for the whole displayed page. To know how to center the resulting control there are enough answers on this site.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.