Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

StaticResource not found for key TextToBoolConverter

I have a problem with a converter I need to use on a Comment text.

I get: "StaticResource not found for key TextToBoolConverter".

Converter:

namespace myMood.Helpers
{
    public class TextToBoolConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, 
                                  object parameter, CultureInfo culture)
        {
            if (value != null)
                if (!(value is string)) return true;
            return string.IsNullOrWhiteSpace(value as string) ? false : true;
        }

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

View:

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="myMood.Views.Entries"
             Icon="ic_view_headline_white_24dp.png"
             xmlns:converters="clr-namespace:myMood.Helpers"
             xmlns:viewModels="clr-namespace:myMood.ViewModels">
...
<Label Text="{Binding Comment}" 
      IsVisible="{Binding Comment, Converter={StaticResource TextToBoolConverter}}">
like image 652
Lasse Edsvik Avatar asked Feb 07 '18 16:02

Lasse Edsvik


1 Answers

Unless you have added it as an App resource, you should declare the converter as a local resource on every page you want to use it.

Just change your XAML to:

<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="myMood.Views.Entries"
             Icon="ic_view_headline_white_24dp.png"
             xmlns:converters="clr-namespace:myMood.Helpers"
             xmlns:viewModels="clr-namespace:myMood.ViewModels">
    <ContentPage.Resources>
        <ResourceDictionary>
            <converters:TextToBoolConverter x:Key="TextToBoolConverter" />
        </ResourceDictionary>
    </ContentPage.Resources>
    ...
    <Label Text="{Binding Comment}" 
           IsVisible="{Binding Comment, Converter={StaticResource TextToBoolConverter}}"/>
     ...
</ContentPage>
like image 87
Diego Rafael Souza Avatar answered Sep 20 '22 15:09

Diego Rafael Souza