如何获得页面的高度?,即;页面中所有元素的高度。
例如,如果我有这个制作页面的 XAML,我如何在运行时获得高度?
<Page x:Class="DialogViews.SomeError"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400"
Title="SomeMessage">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="50" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Label Grid.Row="0" Style="{StaticResource ResourceKey=DialogTitleError}">A Problem</Label>
<TextBlock Grid.Row="1" Style="{StaticResource ResourceKey=DialogMsg}">
Some message to user
</TextBlock>
<Label Grid.Row="2" HorizontalAlignment="Right">
<Hyperlink>
Some link for info
</Hyperlink>
</Label>
</Grid>
</Page>
原因:
我创建了一个自定义窗口,它将作为对话框消息显示给用户,该窗口包含一个框架,该框架又包含此页面。我正在尝试将窗口的高度固定为页面的高度。
我试过了:
myPage.Height; //NaN
myPage.ActualHeight; //0