By Michael Palermo | Article Rating: |
|
August 16, 2013 07:22 PM EDT | Reads: |
1,207 |

When Windows 8 was first introduced, a huge opportunity opened up for web developers. How so? Anyone with HTML, CSS, and JavaScript skills could now apply such skills to developing apps, not just sites. This is due to Microsoft supporting the development of WinRT apps with either C++, .NET, and/or JavaScript. How different is it from writing a web site vs. an app? If you are a web developer and you want to find out, be sure to look at the DevRadio episodes on developing for Windows 8 in half the time (4 minute videos) or the comprehensive “jump start” training series on HTML5 for Windows 8. Moving onward, it will be assumed you already have a degree of experience with developing apps for Windows 8 using HTML5, and you are interested in what’s new or changed.
With Windows 8.1, consumers will enjoy a richer, more interactive experience. Correspondingly, the APIs have been updated, providing developers either new or easier ways of doing things. A listing of the API deltas can be found at the Windows Dev Center for Windows Store apps. Our focus right now is not to do a tedious overview of everything new. Rather, we will look at what you need to do to get ramped up with some highlighted features as quick as possible.
Developer Requirements
To get started, you will need to install Windows 8.1 (preview is available for download) and Visual Studio 2013 (preview is available for download). You should also highly consider registering at the App Builder site for relevant resources.
Visual Studio 2013 Updates
Creating a new project with Visual Studio 2013 is much like it was with Visual Studio 2012. Consider the following screen capture of the “New Project” dialogue box:
First point of interest is a new template type named “Hub App” which allows for a hierarchical system of navigation. The template uses a new Hub control, and you can learn more about it if you download the Hub control sample. Regardless of which template type used though, let’s examine some core changes.
WinJS 2.0
The source page of HTML files now target Windows 8.1, as indicated by the references to WinJS 2.0 as seen here:
<!-- WinJS references --> <link href="//Microsoft.WinJS.2.0.Preview/css/ui-light.css"
rel="stylesheet" /> <script src="//Microsoft.WinJS.2.0.Preview/js/base.js"></script> <script src="//Microsoft.WinJS.2.0.Preview/js/ui.js"></script>
You will also see this visually in the solution explorer view. When expanded, it is easy to see the resources being requested as seen here:
Note that when you open a project created for Windows 8, Visual Studio 2013 will prompt you to determine if the project should now target Windows 8.1
Editor Enhancements
A pleasant enhancement to the JavaScript editor is the automatic completion of code blocks when typing the left side of the block. For example, when typing a left brace { , the editor will pair it with a right brace } and auto-format along the way. Other pairings include parenthesis, brackets, and quotation marks (single or double).
The editor will also highlight identifiers when selected. For example, if a variable is declared with the name isAwesome, notice how the editor will highlight where else it is used:
Tiles
One more quick change to be aware of is found in the package.appxmanifest file. When opening in Visual Studio 2013, you will find the Application UI tab where you can configure the images used for your apps tiles. However, notice the new options as seen here:
These new options introduce both a larger and smaller tile. You should support these new tile sizes so that users of Windows 8.1 can easily organize their Start screen. The example below shows the 70x70 in upper left, 150x150 in upper middle, 310x150 in the lower left, and the 310x310 on the right:
What Next?
So much could be next. To some degree that will depend on the type of app you are developing. The information covered so far is to enable a quick start to the development process. By setting up the required environment and understanding a few of the changes in Visual Studio 2013, you can start coding as usual. Look for deeper looks at specific features in the near future!
Read the original blog entry...
Published August 16, 2013 Reads 1,207
Copyright © 2013 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Michael Palermo
J. “Michael” Palermo IV is a Technical Evangelist with Microsoft. In his years prior to joining Microsoft, Michael served as a Microsoft Regional Director, MVP, and an "insider" with Microsoft on multiple technologies. Michael has authored several technical books and has published several online courses with Pluralsight. Michael’s current passion is HTML5, CSS3, JavaScript, and Windows 8. Michael takes his evangelism seriously, and can be seen speaking at developer events around the world.
Jan. 4, 2019 12:30 PM EST |
By Liz McMillan ![]() Nov. 11, 2018 04:00 PM EST Reads: 3,170 |
By Pat Romanski Nov. 11, 2018 11:45 AM EST Reads: 2,284 |
By Elizabeth White Nov. 10, 2018 11:45 PM EST Reads: 2,064 |
By Pat Romanski Nov. 10, 2018 10:00 PM EST Reads: 3,206 |
By Pat Romanski Nov. 10, 2018 01:00 AM EST Reads: 2,941 |
By Pat Romanski Nov. 9, 2018 04:45 PM EST Reads: 2,282 |
By Yeshim Deniz Nov. 3, 2018 05:00 AM EDT Reads: 4,027 |
By Yeshim Deniz Nov. 2, 2018 03:00 PM EDT Reads: 3,210 |
By Elizabeth White ![]() Oct. 30, 2018 03:45 PM EDT Reads: 14,062 |