vote up 0 vote down star
1

Hi,

Let me clarify what silverlight is doing:

Silverlight Clipping

and I want to get the complete size to resize my silverlight, but I can't does anyone knows a way to get the full size of my controls and resize the div?

I have a silverlight App inside on a Page and when I create the controls the silverlight app gets bigger than the screen resolution, but I didn't want any silverlight scrolls on the page (requirement) so I need to re-size the div containing the silverlight app, and I did that on the code bellow, however it just didn't work out, because it only re-sizes to the size of the resolution not any bigger and my screen still get's the silverlight scroll bar, I'm thinking this is because of the Silverlight Layout System but I'm looking for the scroll bar to be gone. Any Helps???

private HtmlElement div = HtmlPage.Document.GetElementById("SilverlightContent");

public Page()
{
    InitializeComponent();
    this.SizeChanged += new SizeChangedEventHandler(Page_SizeChanged);
}

void Page_SizeChanged(object sender, SizeChangedEventArgs e)
{
    resizeDiv(e.NewSize.Width, e.NewSize.Height);
}

internal void resizeDiv(Double Wsize, Double Hsize)
{
    div.SetStyleAttribute("width", Wsize + "px");
    div.SetStyleAttribute("height", Hsize + "px");
}
flag

1 Answer

vote up 0 vote down

You may be able to publish a property from your Silverlight control indicating the desired size that it wants. You could then use JavaScript to resize the DIV as needed.

Here's a links to reasonably decent samples:

http://www.dotnetspider.com/Silverlight-Tutorial-313.aspx

http://www.switchonthecode.com/tutorials/silverlight-and-javascript-interaction

link|flag
Actually I already am doing that but due to the Silverlight Layout System [msdn.microsoft.com/en-us/library/… my App gets clipped. – Gabriel GuimarĂ£es Oct 13 at 19:43

Your Answer

Get an OpenID
or

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