gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 02:01:21 25 4
gpt4 key购买 nike

我希望我的 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 .但是,正如您从我的代码中看到的那样,它对我不起作用。

最佳答案

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

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

在我的 HTML 中,我将高度和宽度设置为 100%,如下所示...
<div style="height: 100%; width: 100%; position: fixed;">
<asp:Silverlight runat="server" Source="~/ClientBin/My.xap" ID="MyId"
Width="100%" Height="100%" />
</div>

那时,一切都对我有用,可以占据整个窗口。

关于silverlight - 使用 Silverlight 应用程序填充浏览器窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/726964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com