I have the following issue:
In my project called "CabinControlPage" I have a WPF usercontrol where I would like to use a valueconverter implemented in a class. The class looks like this:
Namespace
CabinControlPage
PublicClass SliderConverter
Implements System.Windows.Data.IValueConverter
PublicFunction Convert(ByVal value AsObject, ByVal targetType As System.Type, ByVal parameter AsObject, ByVal culture As System.Globalization.CultureInfo) AsObjectImplements System.Windows.Data.IValueConverter.Convert
Dim inputValue AsDouble = System.Math.Round(Double.Parse(value.ToString()))
Return inputValue
EndFunction
PublicFunction ConvertBack(ByVal value AsObject, ByVal targetType As System.Type, ByVal parameter AsObject, ByVal culture As System.Globalization.CultureInfo) AsObjectImplements System.Windows.Data.IValueConverter.ConvertBack
Dim inputValue AsDouble = System.Math.Round(Double.Parse(value.ToString()))
Return inputValue
EndFunction
EndClass
EndNamespace
I also have my WPF usercontrol with the following declarations:
<
UserControlxmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2006"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:CabinControlPage="clr-namespace:CabinControlPage"mc:Ignorable="d"x:Class="CabinControlUC"><UserControl.Resources>
<CabinControlPage:SliderConverter x:Key="RoundValue"/>
UserControl.Resources>
<
Label FontSize="16" Foreground="#FFFFFFFF" Width="27" x:Name="lightPctLabel" Content="{Binding Path=Value, Converter={StaticResource RoundValue},ElementName=lightSlider, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
The strange thing is that intellisense can find <CabinControlPage:SliderConverter
but I still get this compiler error:
The project is build in VS 2008 beta2