Hi,
Let me clarify what silverlight is doing:

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");
}
