简体   繁体   English

WPF值转换器用本地化字符串替换错误代码

[英]WPF Value Converter to replace error code with localized string

I have a viewmodel implementing the IDataErrorInfo interface for validation, for an error it produces a string which is a key in the resource dictionary for a localized string describing the error. 我有一个实现IDataErrorInfo接口进行验证的视图模型,对于错误,它会生成一个字符串,该字符串是资源字典中用于描述该错误的本地化字符串的键。 However when trying to apply the following style and template to the textbox I get the red border but no tooltip, however removing my converter and using the default one gives me the tooltip but obviously not the localized string. 但是,当尝试将以下样式和模板应用于文本框时,我得到了红色边框,但没有工具提示,但是删除转换器并使用默认值却给了我工具提示,但显然没有本地化的字符串。

Can you see what I am doing wrong and/or if there is a better way of doing this? 您能看到我做错了什么,和/或是否有更好的方法来做到这一点?

class MessageCodeToMessageConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if (value != null)
        {
            string messageCode = (string)value;
            try
            {
                return (string)App.Current.Resources[messageCode];
            }
            catch (Exception)
            {
                return messageCode;
            }
        }
        else
        {
            return null;
        }
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        return "";
    }
}

        <local:MessageCodeToMessageConverter x:Key="Converter"></local:MessageCodeToMessageConverter>
        <Style x:Key="TextBox" TargetType="TextBox">
            <Style.Triggers>
                <Trigger Property="Validation.HasError" Value="true">
                    <Setter Property="ToolTip" Value="{Binding RelativeSource={x:Static RelativeSource.Self}, Path=(Validation.Errors)[0].ErrorContent, Converter={StaticResource Converter}}"/>
                </Trigger>
            </Style.Triggers>
        </Style>
        <ControlTemplate x:Key="ErrorTemplate">
            <DockPanel LastChildFill="True">
                <Border BorderBrush="Red" BorderThickness="1">
                    <AdornedElementPlaceholder />
                </Border>
            </DockPanel>
        </ControlTemplate>

In my opinion if your resource key is defined in the App.xaml then it should work. 我认为,如果您的资源密钥是在App.xaml中定义的,那么它应该可以工作。 But your resource key is probably in resource in some user control. 但是您的资源密钥可能在某些用户控件中的资源中。 (string)App.Current.Resources[messageCode]; search only in the App.xaml resource. 仅在App.xaml资源中搜索。 Solution for you can be use multivalueconverter 您可以使用多值转换器的解决方案

class MessageCodeToMessageConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter,     System.Globalization.CultureInfo culture)
{
    FrameworkElement targetObject = values[0] as FrameworkElement;
    if (targetObject == null)
    {
       return DependencyProperty.UnsetValue;
    }
    if (value != null)
    {
        string messageCode = (string)values[1];
        try
        {
            return targetObject.FindResource(messageCode);
        }
        catch (Exception)
        {
            return messageCode;
        }
    }
    else
    {
        return null;
    }
}

public object ConvertBack(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
    return "";
}
}

and

<Style x:Key="TextBox" TargetType="{x:Type TextBox}">
  <Style.Triggers>
<Trigger Property="Validation.HasError" Value="true">
  <Setter Property="ToolTip">
    <Setter.Value>
        <MultiBinding Converter="{StaticResource Converter}">
            <MultiBinding.Bindings>
                <Binding RelativeSource="{RelativeSource Self}" />
                <Binding RelativeSource="{x:Static RelativeSource.Self}" Path="(Validation.Errors)[0].ErrorContent" />
            </MultiBinding.Bindings>
        </MultiBinding>
    </Setter.Value>
  </Setter>
</Trigger>
</Style.Triggers>
</Style>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM