"Not handled: OnNewAll" error

I’m using <Match> and <Case> in the .ux and now it shows me that error.

This is the code:

<Image ux:Class="square">
   <MultiDensityImageSource>
     <FileImageSource File="images/square.png" Density="1"/>
     <FileImageSource File="images/square@2x.png" Density="2"/>
     <FileImageSource File="images/square@3x.png" Density="3"/>
   </MultiDensityImageSource>
 </Image>
 <Image ux:Class="circle">
   <MultiDensityImageSource>
     <FileImageSource File="images/circle.png" Density="1"/>
     <FileImageSource File="images/circle@2x.png" Density="2"/>
     <FileImageSource File="images/circle@3x.png" Density="3"/>
   </MultiDensityImageSource>
 </Image>
 .
 .
 .

 <Panel>
   <Match Value="{image}">
    <Case String="square">
      <square StretchMode="PixelPrecise" />
    </Case>
    <Case String="circle">
      <circle StretchMode="PixelPrecise" />
    </Case>
   </Match>
 </Panel>

Thanks!

Hi!

Thanks for reporting this.

This is a bug that has now been fixed. A temp work-around until you get the next release is to make sure image always has an initial value, e.g.

var image = Observable("square");

Hi, I also got this error and changed my code so that the Observeable have an initail value:

file

then I say: file

I have a listview and in each item i have:

Then I get the following error: Not handled : OnAdd

If I bind the item text to a normal property of my message, it works it works fine.

Pieter Fouché wrote:

Hi, I also got this error and changed my code so that the Observeable have an initail value:

file

then I say: file

I have a listview and in each item i have:

Then I get the following error: Not handled : OnAdd

If I bind the item text to a normal property of my message, it works it works fine.

Where you able to solve the problem?