Friday, February 26, 2016

Template 10 Library for Windows UWP

A rich library of helpers, services, and base classes for new and
existing Windows UWP apps to maximize awesomeness and minimize boilerplate garbage.
This library has a companion Visual Studio Extension also called "Template 10".
To install Template 10 Library for Windows UWP XAML/.NET apps on Windows 10, run the following command in the Package Manager Console 

 Install-Package Template10 

More info:
https://github.com/Windows-XAML/Template10/wiki

http://blog.jerrynixon.com/2015/04/implementing-hamburger-button-with.html#more



No comments:

Post a Comment

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...