Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 728e41d

Browse files
committed
[WPF] Fix typo
1 parent 91d30c9 commit 728e41d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Xamarin.Forms.Platform.WPF/Assets/Converters.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
<converters:SymbolToValueConverter x:Key="SymbolToValue" />
66
<BooleanToVisibilityConverter x:Key="BoolToVis" />
77
<converters:ToUpperConverter x:Key="ToUpperConverter" />
8-
<converters:FontFamilyConveter x:Key="FontFamilyConveter" />
8+
<converters:FontFamilyConverter x:Key="FontFamilyConveter" />
99
<converters:FontIconColorConverter x:Key="FontIconColorConverter" />
1010
</ResourceDictionary>

Xamarin.Forms.Platform.WPF/Converters/FontFamilyConveter.cs renamed to Xamarin.Forms.Platform.WPF/Converters/FontFamilyConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Xamarin.Forms.Platform.WPF.Converters
66
{
7-
public class FontFamilyConveter : System.Windows.Data.IValueConverter
7+
public class FontFamilyConverter : System.Windows.Data.IValueConverter
88
{
99
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
1010
{

Xamarin.Forms.Platform.WPF/Themes/FormsFontIcon.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<Setter.Value>
1515
<ControlTemplate TargetType="controls:FormsFontIcon">
1616
<TextBlock Text="{Binding Source.Glyph, RelativeSource={RelativeSource Mode=TemplatedParent}}"
17-
FontFamily="{Binding Source.FontFamily, RelativeSource={RelativeSource Mode=TemplatedParent}, Converter={StaticResource FontFamilyConveter}}"
17+
FontFamily="{Binding Source.FontFamily, RelativeSource={RelativeSource Mode=TemplatedParent}, Converter={StaticResource FontFamilyConverter}}"
1818
Foreground="{Binding Source.Color, RelativeSource={RelativeSource Mode=TemplatedParent}, Converter={StaticResource FontIconColorConverter}}">
1919
</TextBlock>
2020
</ControlTemplate>

Xamarin.Forms.Platform.WPF/Xamarin.Forms.Platform.WPF.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
<Compile Include="Converters\CaseConverter.cs" />
8888
<Compile Include="Converters\CollapseWhenEmptyConverter.cs" />
8989
<Compile Include="Converters\ColorConverter.cs" />
90-
<Compile Include="Converters\FontFamilyConveter.cs" />
90+
<Compile Include="Converters\FontFamilyConverter.cs" />
9191
<Compile Include="Converters\FontIconColorConverter.cs" />
9292
<Compile Include="Converters\HeightConverter.cs" />
9393
<Compile Include="Converters\IconConveter.cs" />

0 commit comments

Comments
 (0)