vote up 0 vote down star
3

I have a silverlight app that I want to allow to size like a regular HTML page. That is, I want the size of the silverlight plugin to expand and contract in height to accommodate the dynamic data and controls that I am populating the silverlight app with. So, say I have a Page with a Grid and a button. The user hots the button and the grid gets a bunch of rows with images making the natural size of the grid higher than the browser windows. I would like to have something in place to resize the silverlight plugin to accomidate the DesiredSize of the Grid. The following, and several other attempts, are not working:

// handler in my main page.
 void MainGrid_LayoutUpdated(object sender, EventArgs e)
 {
     HtmlPage.Window.Invoke("setSilverlightSize", this.MainGrid.DesiredSize.Height);
 }

<body style="height:100%;margin:0;">
    <form id="mainForm" runat="server" style="height:100%;">
        <asp:ScriptManager ID="ScriptManager" runat="server"></asp:ScriptManager>
        <div id="SilverlightContainer"  style="height:100%;">
            <asp:Silverlight ID="SLMain" runat="server" Source="~/ClientBin/My.Silverlight.Main.xap" Version="2.0" Width="100%" Height="100%" />
        </div>
    </form>
    <script type="text/javascript">
        function setSilverlightSize(val) {
            var host = document.getElementById("SilverlightContainer");
            host.style.height = val + "px";
        }
    </script>
</body>

The desired size of the MainGrid always wants to be the size of the window. Argh said the pirate.

-r

flag

3 Answers

vote up 1 vote down

I used this and seems to work well. Need to get Render"ed" size.

private void LayoutRoot_LayoutUpdated(object sender, System.EventArgs e)
{
    // Set the size of the SL object to the new rendered size of the Grid.
    ResizeSilverlightOnject(this.LayoutRoot.RenderSize.Height);
}

private void ResizeSilverlightObject( double height )
{
    HtmlPage.Window.Invoke( "ResizeObject", new object[] { height } );
}
link|flag
vote up 0 vote down
  1. Set the overflow to "auto"
  2. Set the scroll to "no"
  3. Set the margin to "0"
  4. Set the containing div's width and height to "100%"
  5. Set the Silverlight control's width and height to "100%"

This should cover all your bases. See below for some sample HTML.

Try this:

<style type="text/css"> 
html, body { overflow:auto } 
</style>
<head>
    <title>My App</title>
</head>
<body id="bodyId" style="margin:0;" scroll="no">
    <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
         <div style="position: fixed; height: 100%; width: 100%">
            <avn:Silverlight 
                ID="xamlHost" 
                runat="server" 
                Source="~/ClientBin/THE.xap" 
                MinimumVersion="x.x.xxxxx" 
                Width="100%" 
                Height="100%" 
                />
         </div>
    </form>
</body>
</html>
link|flag
In this case, the silverlight plugin does not grow to accommodate the content. In the case where my content is bigger than the browser window, I would like the silveright plugin to grow past the borders of the browser window, if necessary, such that the browser will show scroll bars. In your example, the plugin scales with the browser window and not the silverlight content. – ptoinson May 14 at 16:05
I see, this brings up the age old question of who should be responsible for scrolling, the browser? or Silverlight? I have found that it is much simpler to handle scrolling of content from within Silverlight. Which is why I use the above HTML container to ensure that only the Silverlight control does the scrolling. If you don't do it this way you could run into the vile double scrollbar scenario. – markti May 15 at 13:49
Unfortunately, I want to use windowless mode for silverlight which does not allow the mouse to be captured outside the plugin. Using Silverlight scrolling here is buggy. – ptoinson May 26 at 7:26
vote up 0 vote down

Please change the name of the calling method ResizeSilverlightOnject to ResizeSilverlightObject , thanks

link|flag

Your Answer

Get an OpenID
or

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