Quantcast
Viewing all articles
Browse latest Browse all 18858

The tag XXX does not exist in XML namespace 'clr-namespace:YYY'.

 

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:

 

Code Block

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:

 

Code Block

<

UserControl

xmlns="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:

 

Code Block
Error 1 The tag 'SliderConverter' does not exist in XML namespace 'clr-namespace:CabinControlPage'. Line 63 Position 10. C:\Documents and Settings\kms.LANTIC\My Documents\Expression\Expression Blend Projects\CabinControlPage\CabinControlUC.xaml 63 10 CabinControlPage

 

 

The project is build in VS 2008 beta2


Viewing all articles
Browse latest Browse all 18858

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>