我在C#上使用wpf来设计GUI,我想从xaml代码中获取屏幕大小(宽度和高度的值)。
我知道如何从C#代码中获取它们
Width = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width;
Height = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height;
但我不知道如何从XAML
代码中获取它们。
答案 0 :(得分:13)
这会奏效。您可以阅读更多关于SystemParameters的here
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<StackPanel>
<TextBlock Text="{Binding Source={x:Static SystemParameters.FullPrimaryScreenHeight}}" />
<TextBlock Text="{Binding Source={x:Static SystemParameters.FullPrimaryScreenWidth}}" />
<TextBlock Text="{Binding Source={x:Static SystemParameters.PrimaryScreenHeight}}" />
<TextBlock Text="{Binding Source={x:Static SystemParameters.PrimaryScreenWidth}}" />
</StackPanel>
</Window>
答案 1 :(得分:7)
查看SystemParameters类:http://msdn.microsoft.com/de-de/library/system.windows.systemparameters.fullprimaryscreenheight.aspx
你可以像这样使用它:
<Object Attribute="{x:Static SystemParameters.FullPrimaryScreenHeight}"/>
(您也可以使用x:Static表示法来查询Windows窗体属性,但是如果您正在开发WPF应用程序,则可能需要使用SystemParameters类)
答案 2 :(得分:2)
假设您在XAML中的父容器是网格,将其命名为grdForm
在后面的代码中可以获得尺寸为
double width = grdForm.ActualWidth
double height = grdForm.ActualHeight