gpt4 book ai didi

c# - 有什么办法可以在 x :DataType? 中使用值类型

转载 作者:太空狗 更新时间:2023-10-29 17:51:47 26 4
gpt4 key购买 nike

鉴于此 DataTemplate:

<DataTemplate x:DataType="Color">
...
</DataTemplate>

我收到以下错误:

The as operator must be used with a reference type or nullable type ('Color' is a non-nullable value type)

当您跟踪错误时,它会将您带到使用 as 运算符的 View 自动生成的代码。

public void DataContextChangedHandler(global::Windows.UI.Xaml.FrameworkElement sender, global::Windows.UI.Xaml.DataContextChangedEventArgs args)
{
global::Windows.UI.Color data = args.NewValue as global::Windows.UI.Color;
if (args.NewValue != null && data == null)
{
throw new global::System.ArgumentException("Incorrect type passed into template. Based on the x:DataType global::Windows.UI.Color was expected.");
}
this.SetDataRoot(data);
this.Update();
}

我知道 {x:Bind} 是新的,但以防万一,有谁知道如何配置它以允许值类型,或者至少使用直接转换?

最佳答案

在 x:DateType 中绑定(bind) Windows 运行时类型(如“Windows.UI.Color”)时,我遇到了同样的问题。

我目前使用的解决方法是包装 .NET 引用类型。

public class BindModel
{
public Windows.UI.Color Color { get; set; }
}

<DataTemplate x:Key="test" x:DataType="local:BindModel">
<TextBlock>
<TextBlock.Foreground>
<SolidColorBrush Color="{x:Bind Color}"></SolidColorBrush>
</TextBlock.Foreground>
</TextBlock>
</DataTemplate>

关于c# - 有什么办法可以在 x :DataType? 中使用值类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32880138/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com