Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 75fbf19d authored by Harald Martini's avatar Harald Martini
Browse files

Added parameters to ProeprtyNameToLabelTextConverter

parent e71de4a4
No related branches found
No related tags found
No related merge requests found
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Resources;
using System.Windows.Data;
using VECTO3GUI2020.Properties;
......@@ -8,10 +11,35 @@ namespace VECTO3GUI2020.Helper.Converter
public class PropertyNameToLabelTextConverter : IValueConverter
{
#region Implementation of IValueConverter
/// <summary>
/// Maps the value to a string found in the given ResourceFiles (first match).
///
/// </summary>
/// <param name="value"></param>
/// <param name="targetType"></param>
/// <param name="parameter"></param>
/// <param name="culture"></param>
/// <example>
///
/// <Binding Path="." Converter="{StaticResource PropertyNameToLabelConverter}">
/// <Binding.ConverterParameter>
/// <x:Array Type="resources:ResourceManager">
/// <x:Static MemberType="properties:Strings" Member="ResourceManager"/>
/// </x:Array>
/// </Binding.ConverterParameter>
/// </Binding>
///
/// </example>
/// <returns></returns>
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return NameResolver.ResolveName(value as string, BusStrings.ResourceManager, Strings.ResourceManager) ?? Binding.DoNothing;
if (parameter is IEnumerable<ResourceManager> resourceManagers) {
return NameResolver.ResolveName(value as string, resourceManagers.ToArray());
} else {
return NameResolver.ResolveName(value as string, BusStrings.ResourceManager, Strings.ResourceManager) ?? Binding.DoNothing;
}
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
......
......@@ -7,5 +7,4 @@
ObjectType="{x:Type helper:ConvertedSIDummyCreator}"
MethodName="CreateMillimeterDummy"/>
<ObjectDataProvider x:Key="BusStringResourceManager" ObjectType="{x:Type resources:ResourceManager}" ObjectInstance="{x:Static properties:BusStrings.ResourceManager}"/>
</ResourceDictionary>
\ No newline at end of file
......@@ -5,6 +5,8 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:VECTO3GUI2020.Views.Multistage.AdditionalJobInfoViews"
xmlns:common="clr-namespace:VECTO3GUI2020.ViewModel.Implementation.Common"
xmlns:resources="clr-namespace:System.Resources;assembly=mscorlib"
xmlns:properties="clr-namespace:VECTO3GUI2020.Properties"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800" d:DataContext="{d:DesignInstance common:AdditionalJobInfoViewModelMultiStage }">
<Grid>
......@@ -15,9 +17,21 @@
<DataTemplate>
<BulletDecorator>
<BulletDecorator.Bullet>
<Ellipse HorizontalAlignment="Center" VerticalAlignment="Center" Height="5" Width="5" Fill="{DynamicResource AccentColorButton}"></Ellipse>
<Ellipse HorizontalAlignment="Center" VerticalAlignment="Center" Height="5" Width="5" Fill="{DynamicResource AccentColorButton}"/>
</BulletDecorator.Bullet>
<TextBlock Margin="5 0" Text="{Binding Converter={StaticResource PropertyNameToLabelConverter}}"></TextBlock>
<TextBlock Margin="5 0">
<TextBlock.Text>
<Binding Path="." Converter="{StaticResource PropertyNameToLabelConverter}">
<Binding.ConverterParameter>
<x:Array Type="resources:ResourceManager">
<x:Static MemberType="properties:GUILabels" Member="ResourceManager"/>
<x:Static MemberType="properties:BusStrings" Member="ResourceManager"/>
<x:Static MemberType="properties:Strings" Member="ResourceManager"/>
</x:Array>
</Binding.ConverterParameter>
</Binding>
</TextBlock.Text>
</TextBlock>
</BulletDecorator>
</DataTemplate>
</ItemsControl.ItemTemplate>
......
......@@ -4,6 +4,8 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:VECTO3GUI2020.Views.Multistage.AdditionalJobInfoViews"
xmlns:properties="clr-namespace:VECTO3GUI2020.Properties"
xmlns:resources="clr-namespace:System.Resources;assembly=mscorlib"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
......@@ -16,7 +18,20 @@
<BulletDecorator.Bullet>
<Ellipse HorizontalAlignment="Center" VerticalAlignment="Center" Height="5" Width="5" Fill="{DynamicResource AccentColorButton}"></Ellipse>
</BulletDecorator.Bullet>
<TextBlock Margin="5 0" Text="{Binding Converter={StaticResource PropertyNameToLabelConverter}}"></TextBlock>
<TextBlock Margin="5 0">
<TextBlock.Text>
<Binding Path="." Converter="{StaticResource PropertyNameToLabelConverter}">
<Binding.ConverterParameter>
<x:Array Type="resources:ResourceManager">
<x:Static MemberType="properties:GUILabels" Member="ResourceManager"/>
<x:Static MemberType="properties:BusStrings" Member="ResourceManager"/>
<x:Static MemberType="properties:Strings" Member="ResourceManager"/>
</x:Array>
</Binding.ConverterParameter>
</Binding>
</TextBlock.Text>
</TextBlock>
</BulletDecorator>
</DataTemplate>
</ItemsControl.ItemTemplate>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment