gpt4 book ai didi

silverlight - 如何在 TargetNullValue 属性中绑定(bind)本地化字符串?

转载 作者:行者123 更新时间:2023-12-04 15:14:19 24 4
gpt4 key购买 nike

我有一个 Textblock,它的 Text 属性绑定(bind)到 DateTime?输入数据,我想在 DateTime?数据为空。

下面的代码效果很好。

  < TextBlock Text="{Binding DueDate, TargetNullValue='wow,It's null'}"/>

但是,如果我想将 Localizedstring 绑定(bind)到 TargetNullValue 怎么办?
下面的代码不起作用:(怎么办?
  < TextBlock Text="{Binding DueDate, TargetNullValue={Binding LocalStrings.bt_help_Title1, Source={StaticResource LocalizedResources}} }"/>

最佳答案

我看不出有任何方法可以用 TargetNullValue 做到这一点。作为一种解决方法,您可以尝试使用转换器:

public class NullValueConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value != null)
{
return value;
}

var resourceName = (string)parameter;

return AppResources.ResourceManager.GetString(resourceName);
}

public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}

然后将其添加到页面的资源中:
<phone:PhoneApplicationPage.Resources>
<local:NullValueConverter x:Key="NullValueConverter" />
</phone:PhoneApplicationPage.Resources>

最后,使用它代替 TargetNullValue:
<TextBlock Text="{Binding DueDate, Converter={StaticResource NullValueConverter}, ConverterParameter=bt_help_Title1}" />

关于silverlight - 如何在 TargetNullValue 属性中绑定(bind)本地化字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10565213/

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