我试图在窗口显示之前计算StackPanel
width
, height
(位于网格的中间单元格)(例如在窗口构造函数中)。如何实现?
<Window x:Class="WpfApplication2.TestWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="TestWindow" Height="300" Width="300">
<Grid Name="grid">
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<StackPanel Grid.Row="1" Grid.Column="1" Name="stackPanel"></StackPanel>
</Grid>
测量 Window 也为 stackPanel 设置DesiredSize
为{0;0}
public partial class TestWindow : Window
{
public TestWindow()
{
InitializeComponent();
this.Measure(new Size(this.Width, this.Height)); // -> this.DesiredSize = {0;0}
...
}
}
编辑1
以下适用于 FixedPage:
fixedPage.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
fixedPage.Arrange(new Rect(0, 0, fixedPage.DesiredSize.Width, fixedPage.DesiredSize.Height));
然后我们可以访问stackPanel.ActualWidth
和stackpanel.ActualHeight
。
但是对于Window,它不起作用。