WPF конвертер для содержания ярлыков - PullRequest
0 голосов
/ 01 апреля 2020

Я пытаюсь переопределить вывод метки, скажем, она содержит «Учетная запись», и клиент хочет, чтобы учетная запись отображалась как «Участник» (так что подумайте об этом как о конвертере локализации?)

Мой вопрос; это возможно с "жестко закодированным" контентом? или я ДОЛЖЕН создать файл stati c, содержащий все содержимое меток (конечно, с iNotifiyStati c)? * для связывания?

xaml:

 <Label Style="{StaticResource LabelLeft}" Content="Account Name:"></Label>

Файл ресурса: Включая все попытки, сделанные из нескольких источников Вот наиболее значимый .

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:converters ="clr-namespace:Company.Resources.Converters">   

<converters:LocationLabelsConverter x:Key="LocationLabelsConverter" />

<Style x:Key="LabelLeft"  TargetType="{x:Type Label}" >
    <Setter Property="Margin" Value="10 0 0 0"></Setter>
    <Setter Property="Height" Value="22"></Setter>
    <Setter Property="Padding" Value="0 0 0 0"></Setter>
    <Setter Property="VerticalContentAlignment" Value="Center"></Setter>
    <!-- Att1 -->
    <!--<Setter Property="TextBlock.Text" Value="{Binding RelativeSource={RelativeSource self},
                                   Path=Content,
                                   Converter={StaticResource LocationLabelsConverter}}"></Setter>-->
    <!-- Att2 -->
    <!--<Setter Property="Content">
        <Setter.Value>
            <Binding Path="Content" RelativeSource="{RelativeSource self}">
                <Binding.Converter>
                    <converters:LocationLabelsConverter/>
                </Binding.Converter>
            </Binding>
        </Setter.Value>  
    </Setter>-->
    <!-- Att3 -->
    <!--<Style.Triggers>
        <DataTrigger Binding="{Binding RelativeSource={RelativeSource self},
                                   Path=Content,
                                   Converter={StaticResource LocationLabelsConverter}}">
            <Setter Property="Content" Value="Test123"/>
        </DataTrigger>
    </Style.Triggers>-->        
</Style>

А вот и конвертер:

[ValueConversion(typeof(string), typeof(string))]
public sealed class LocationLabelsConverter : IValueConverter
{
    public object Convert(object value, Type targetType,
        object parameter, CultureInfo culture)
    {
        if (value != null)
        {
            return "hello sweety";// (string)value; //The goal here in the end is to run it through a method to replace string with correct text.
        }
        else return null;
    }        

    public object ConvertBack(object value, Type targetType,
        object parameter, CultureInfo culture)
    {
        return (string)value;
    }
}

1 Ответ

0 голосов
/ 01 апреля 2020

Вы можете применить конвертер так:

<Label Content="{Binding Source='Account Name:', Converter={StaticResource LocationLabelsConverter}"/>
...