滚动条不会出现在Silverlight应用程序中

时间:2012-02-09 04:48:48

标签: silverlight xaml silverlight-4.0

我正在使用Silverlight 4 App。

我有mainpage.xaml,在其中我使用导航框架控件导航到子页面。 当最小化页面时,不会显示滚动条。同样在最大化时,当内容超过高度时,不会出现垂直滚动条。我使用了scrollviewer,但没有任何反应

下面显示的是我的Mainpage.xaml代码

<UserControl xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"  x:Class="Life_Centre_App.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"         
mc:Ignorable="d"
d:DesignHeight="1024" d:DesignWidth="768" xmlns:dxr="http://schemas.devexpress.com/winfx/2008/xaml/ribbon" xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core" xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars" Opacity="1">

<Grid x:Name="LayoutRoot" Background="White" dx:ThemeManager.ApplyApplicationTheme="True">
       <ScrollViewer VerticalScrollBarVisibility="Auto" Height="Auto" Width="Auto" HorizontalScrollBarVisibility="Auto">
            <navigation:Frame x:Name="navframe_content"  Margin="0,159,0,0" />
            </ScrollViewer></Grid></UserControl>

这是解决这个问题的方法吗?

需要帮助!

1 个答案:

答案 0 :(得分:1)

您应将MaxWidth的{​​{1}}和MaxHeight属性设置为非自动值,即固定值。一旦导航框架控件的高度超过该高度,您将看到滚动条。