在XAML文件中使用常量定义DesignWidth

本文关键字:常量 定义 DesignWidth XAML 文件 | 更新日期: 2023-09-27 18:00:54

我想用一个常量定义DesignWidth值,但视图似乎没有Blend中定义的宽度。我有一个Constants.class

public static class Constants
{
    public static int ApplicationWidth { get { return 1280;} }
    public static int ApplicationHeight { get { return 720; } }
}

View.xaml

<UserControl
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:constants="clr-namespace:app.Constants"
    d:DesignWidth="{x:Static constants:Constants.ApplicationWidth}">
</UserControl>

在Visual Studio中,视图宽度为267px,在Blend中为262px。如何在不对XAML文件中的值进行硬编码的情况下设置Width,以便在Blend an Visual Studio中具有所需的大小?

在XAML文件中使用常量定义DesignWidth

  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:constants="clr-namespace:app.Constants"
  xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  mc:Ignorable="d"
  d:DesignWidth="{Binding Source={x:Static constants:Constants.ApplicationWidth}}">