我遇到了一种情况,直接在 XAML 中指定浮点值并将其用作我的几个 UI 片段的资源非常有用。在四处搜索后,我发现了大量有关如何在 XAML 中包含正确程序集 (mscorlib) 的信息,以便您可以做到这一点。
不幸的是,在我尝试这样做的一个实例中,我遇到了一个例外。下面是重现这种情况的以下 XAML:
<Window x:Class="davidtestapp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:core="clr-namespace:System;assembly=mscorlib"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<core:Double x:Key="MyDouble">120</core:Double>
</Window.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="{StaticResource MyDouble}" />
<ColumnDefinition Width="40" />
<ColumnDefinition Width="40" />
</Grid.ColumnDefinitions>
<Rectangle Grid.Column="0" Fill="Red" />
<Rectangle Grid.Column="1" Fill="Green" />
<Rectangle Grid.Column="2" Fill="Blue" />
</Grid>
</Window>
当我尝试编译并运行它时,我收到一个 XamlParseException 向我抛出,它说“'120' 不是属性'Width' 的有效值”。
但是“Width”属性是双精度的,那么为什么我不能使用定义的 StaticResource 来设置它呢?有谁知道如何做到这一点?