I have a custom ColorPicker
Control without giving x:Name=""
to this control gives assembly unknown namespace error:
The type 'ColorPicker' was not found because 'clr-namespace:SilverlightControls;assembly=SilverlightControls' is an unknown namespace..
Whereas it is working fine if I give it a name. Actually I have to use this Control in LisBox. I am using in this way:
xmlns:slColor="clr-namespace:SilverlightControls;assembly=SilverlightControls"
<slColor:ColorPicker Height="23" Width="20"
Color="{Binding PalleteColor, Mode=TwoWay}">
</slColor:ColorPicker>
Can somebody guide me?