如何从xaml中获取屏幕大小

本文关键字:屏幕 获取 xaml | 更新日期: 2023-09-27 18:20:34

我在C#上使用wpf来设计GUI,我想从xaml代码中获得屏幕大小(宽度和高度的值)。

我知道如何从C#代码中获得它们作为

   Width = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width;
   Height = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height;

但我不知道如何从XAML代码中获取它们。

如何从xaml中获取屏幕大小

这将起作用。您可以在这里阅读更多关于SystemParameters 的信息

<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>

查看SystemParameters类:http://msdn.microsoft.com/de-de/library/system.windows.systemparameters.fullprimaryscreenheight.aspx

你可以这样使用它:

<Object Attribute="{x:Static SystemParameters.FullPrimaryScreenHeight}"/>

(您也可以使用x:Static表示法来查询Windows窗体属性,但是,如果您正在开发WPF应用程序,SystemParameters类可能是最好的方法)

假设XAML中的父容器是网格,将其命名为grdForm

在后面的代码中可以获得的尺寸

双倍宽度=grdForm.ActualWidth

双倍高度=grdForm.ActualHeight