blog.atwork.at

news and know-how about microsoft, technology, cloud and more.

Neues in Windows Phone SDK 8.0

Für alle jene Developer, die sich mit Windows Phone 8 Entwicklung auseinandersetzen möchten, hier nach der Installation ein Tipp für den Start:

What's new in Windows Phone SDK 8.0

wpsdk8

Diese Website informiert über alle wesentlichen Neuerungen in WP SDK 8.0.

Ich bin unlängst darüber gestolpert, weil ich nachsehen wollte, ob Scalable Vector Graphics (SVG), in Internet Explorer Mobile 10 unterstützt wird...

Die Antwort ist: Ja. SVG in einer HTML-Seite in IE10 Mobile funktioniert (erwartungsgemäß):

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=9"/>
    <style type="text/css" media="screen">
    </style>
    <script type="text/javascript">
    </script>
  </head>
  <body>
    <div>
     
<svg height="470px" width="800px">
        <rect id="myRect" height="100px" width="100px" fill="blue" />
      </svg> 
    </div>
  </body>
</html>

Hierzu ist übrigens ein ganz interessanter Artikel in MSDN: How To Choose Between SVG and Canvas (Windows) zu finden.

Viel Spaß beim Durchlesen und Forschen!

Loading