給定以下XMAL爲什麼沒有垂直滾動條用於綁定到100個字符串的ObservableCollection的ListBox。如果我改變了第二行的高度從*到一些固定的像500,然後會出現一個滾動條,但很明顯,我想行高是什麼都可以(這是我的理解*的意思)爲什麼沒有此列表框的垂直滾動條
<UserControl x:Class="SimpleStack.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"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<UserControl.Resources>
<DataTemplate x:Key="ListBoxItemTemplate">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Place holder"/><TextBlock Text="{Binding}"/>
</StackPanel>
</DataTemplate>
</UserControl.Resources>
<Grid x:Name="LayoutRoot" Background="Azure">
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock Text="The Text" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2"/>
<ListBox ItemsSource="{Binding ListOfNumbers}" Grid.Row="1" Grid.Column="0"
ItemTemplate="{StaticResource ListBoxItemTemplate}"/>
<TextBlock Text="Place Holder" Grid.Row="1" Grid.Column="1"/>
</Grid>
</UserControl>
它確實顯示我的UserControl正在被給予無限的空間,正如你所建議的那樣。 Howerver我不知道爲什麼會這樣?插件獲得100%x100%(VS測試頁面的SOP) – 2010-10-18 16:18:57
是否有一種工具可以在運行時調查佈局,類似於IE開發人員工具? – 2010-10-18 16:20:58
你的UserControl是應用程序的RootVisual還是包含在另一個頁面中?如果它包含在另一個頁面中,請檢查以確保其包含的面板不是「StackPanel」,這會導致它具有無限可用大小。 – Stephan 2010-10-18 16:43:14