Hi Paul,
Here is the problem (and again, I'm just borrowing this from the Silverlight Airlines sample) :
For the resizing to work you also need a couple alterations to the default app-wizard generated TestPage.html. First you need to change the fixed pixel width and height to percentages. Second you need to give the elements "html" and "body" (or at least just "body") a percentage-based height also.
Alan Cobb
www.alancobb.com
------------------- Code ----------------------
Altered fragment of TestPage.html:
<head>
<title>Silverlight Project Test Page </title>
<style type="text/css">
/* Stock version:
.silverlightHost
{ width: 640px; height: 480px;
}
*/
/* Replace the above with these two styles: */
.silverlightHost
{ width: 100%; height: 100%;
}
html,body
{ height:100%; margin: 0;
}
</style>
</head>