使用Silverlight应用程序填充浏览器窗口

问题描述 投票:14回答:4

我希望我的Silverlight应用填充整个浏览器窗口。我已将插件对象的宽度和高度设置为100%,并将LayoutRoot容器的高度和宽度设置为自动,但是仍然没有运气。有什么建议吗?

<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>

免责声明:我首先搜索了答案,找到了this thread。但是,如您所见,我的代码对我不起作用。

silverlight browser size
4个回答
18
投票

首先,我没有在用户控件中设置高度/宽度。相反,我设置了DesignHeight和DesignWidth(在“ http://schemas.microsoft.com/expression/blend/2008”命名空间中),并将对齐方式设置为拉伸

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

在我的HTML中,我像这样将Height和Width设置为100%...

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

那时,一切对我来说都可以使它占据整个窗口。


0
投票

从中删除高度和宽度属性:

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

自动调整高度和宽度并调整窗口大小以适合内容。如果删除“高度”和“宽度”属性,Silverlight应用程序将增长以适合窗口。


0
投票

Hmm

我认为您的网格设置应尽可能小(没有“星号”列或行)。您可以再试一试“星号”大小的列和行吗?

正如其他人指出的那样,您还需要删除“自动”大小,因为它们会自动调整为内容大小。

也尝试在页面上设置背景色,这样您就可以看到它实际延伸的位置。


0
投票

如果您有一个相当复杂的HTML布局,并且不能依靠固定的位置,则可以使用以下命令来调整#silverlightControlHost div的大小:

private bool _hasResized;

protected override Size ArrangeOverride(Size finalSize)
{
    if (!_hasResized)
    {
        HtmlPage.Document.GetElementById("silverlightControlHost").SetStyleAttribute("height", finalSize.Height.ToString());
        _hasResized = true;
    }

    return base.ArrangeOverride(finalSize);
}

您可以将其放在MainPage.cs内,或者如果嵌套了UserControls,则需要最大高度的控件。我还使用以下XAML,Visual Studio提供了默认的HTML]

<UserControl ...
    VerticalAlignment="Stretch"
    Height="Auto"
    Width="Auto">

据我所知,Auto是默认设置,我没有这些设置就没有测试过。

© www.soinside.com 2019 - 2024. All rights reserved.