我想將itemcontrol的高度設置爲網格行定義中定義的值。如果我手動設置itemscontrol上的高度,它當然會影響控件。我如何綁定或實現此行爲?我只想讓我的itemscontrol尺寸由網格確定。謝謝!ItemsControl Height Issue
<ScrollViewer>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="600"/>
<RowDefinition Height="500"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<ItemsControl Grid.Row="1" Grid.Column="0" Name="MIPRegion" cal:RegionManager.RegionName="MIPRegion" />
</Grid>
</ScrollViewer>
問題是什麼? ItemsControl在您的示例中正確具有500像素的高度。 –
也許你的意思是scrollviewer的高度爲500? –