inline xaml in html document -
how view xaml code inside html document, xaml code:
<canvas name="myxaml" width="618.125" height="37.325001" cliptobounds="true" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> <canvas name="g10" rendertransform="1.25,0,0,-1.25,0,37.325001"> <canvas name="g12"> <path fill="#ff000000" name="path16"> <path.data> <pathgeometry fillrule="nonzero" figures="m41.977,17.434l41.977,18.165 48.719,18.165 48.719,17.434 41.977,17.434z m41.977,15.165l41.977,15.891 48.719,15.891 48.719,15.165 41.977,15.165z" /> </path.data> </path> </canvas> </canvas> </canvas> and goal doing this:
<html> <body> <span> <canvas name="myxaml" width="618.125" height...............</canvas> </span> </body> </html> and if isn't possible, possible convert xaml html, found tool called html2xaml converts html xaml , visversa results in no output such xaml file.
you try saving xaml file, , opening them in vector based illustration editor such inkscape, , export more html friendly format (such svg, displayed inside canvas).
link : inkscape supports xaml
Comments
Post a Comment