While trying to view your xaml file in the internet explorer, are you getting the following error?
System.Windows.Markup.XamlParseException: The tag ‘Canvas’ does not exist in XML namespace ‘http://schemas.microsoft.com/client/2007′.
Well, that’s because you are using the web browser silverlight name space instead of the winfx namespace.
So to resolve the issue simply replace your
<Canvas xmlns="http://schemas.microsoft.com/client/2007" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
with
<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">







No Comments Yet - be the First!