Hi,
Is that true that the image file in a xaml file shall be in english? I use VS2008/silverlight 2. Here is the code.
<?xml version="1.0" encoding="utf-8" ?>
<Canvas xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
<Canvas >
<Image Height="130" Width="300" Source="Images/AAA.png" Stretch="Fill"/>
</Canvas>
<TextBlock Width="100" Height="36" Canvas.Top="200" Text="BBB" />
</Canvs>
Here are the results,
1.if AAA.png is replaced by an english file name, it works.
2.if AAA.png is replaced by an english file name and BBB is replaced by chinese characters, it works too.
3.if AAA.png replaced by a chinese file name, it doesn't work.
4. for case 3, it works in Expression Blend 2.5.
Is there a way to fix the case 3?
regards,
schoolbus-