vote up 2 vote down star

I want my Silverlight app to fill the entire browser window. I've set the plugin object width and height to 100%, and set my LayoutRoot container's height and width to Auto, but still no luck. Any suggestions?

<form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server" />
    <asp:Silverlight ID="Silverlight1" runat="server" 
    	Source="~/ClientBin/Client.xap"
    	MinimumVersion="2.0.30818.0"
    	AutoUpgrade="true"
    	Height="100%" 
    	Width="100%">
    </asp:Silverlight>
</form>

<UserControl 
    x:Class="Client.Page"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Height="Auto"
    Width="Auto">
    <Grid 
    	x:Name="LayoutRoot" 
    	Background="#084E85"
    	ShowGridLines="True">
    	<Grid.ColumnDefinitions>
    		<ColumnDefinition Width="280" />
    		<ColumnDefinition Width="Auto" />
    	</Grid.ColumnDefinitions>
    	<Grid.RowDefinitions>
    		<RowDefinition Height="80" />
    		<RowDefinition Height="Auto" />
    		<RowDefinition Height="600" />
    	</Grid.RowDefinitions>

    	...Remaining content here...
    </Grid>
</UserControl>

Disclaimer: I searched for an answer first, finding this thread. However, as you can see by my code that isn't working for me.

flag

79% accept rate

3 Answers

vote up 2 vote down check

First, I don't set the height/width in the user control. Instead, I set the DesignHeight and DesignWidth (in the "http://schemas.microsoft.com/expression/blend/2008" namespace) and I set the alignment to stretch

<UserControl ... 
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
    HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
    d:DesignHeight="1050" d:DesignWidth="1680">

In my Html, I set the Height and Width to 100% like this...

<div style="height: 100%; width: 100%; position: fixed;">
        <asp:Silverlight runat="server" Source="~/ClientBin/My.xap" ID="MyId" 
            Width="100%" Height="100%" />
</div>

At that point, everything works for me to have it take the entire window.

link|flag
One thing I'd add (which I found out the hard way): if you're hosting controls within other controls, and you want the hosted control to fill the entire screen, you should use a Grid rather than a Canvas as the LayoutRoot for the hosting control. A Canvas only supports absolute layout, and consequently ignores any HorizontalAlignment="Stretch" or VerticalAlignment="Stretch" attributes. So if you use a Canvas for your hosting control, the hosted control will always be sized to the minimum size required to support all the elements it contains. – Ken Smith Jun 3 at 5:54
vote up 0 vote down

Remove the Height and Width attributes from the :

<UserControl
     x:Class="Client.Page"
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

Auto Height and Width with resize the window to fit the content. If you remove the Height and Width attributes, your Silverlight Application will grow to fit the window.

link|flag
If you remove the height and width completely, it doesn't render properly in the designer... see DesignHeight and DesignWidth – Brian Genisio Apr 7 at 18:24
vote up 0 vote down

Hmm

I'm thinking your Grid is set-up to be as small as possible (no "star" column or row). Can you try with one more column and row with a "star" size ?

as other have pointed out, you also need to remove the "auto" sizes, since they auto-size to content.

also try to set a background color on the page, so you see where it actually extends.

link|flag

Your Answer

Get an OpenID
or

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