Toolkits, Toolkits, Toolkits!

Windows

Windows
As a UWP developer, you have many options to help build your application quickly and reliably. In fact, there are so many options that you may feel like you can choose only one. Luckily, that’s not the case, and many toolkits complement each other in various ways.

Today, we’ll talk about two open source toolkits:


Both are open source, but each has different strengths. These two particular toolkits can bring tools and controls for a variety of application scenarios. Let’s start by introducing the toolkits and how they can help.

UWP Community Toolkit


The UWP Community Toolkit is the ultimate collaboration between Microsoft and the UWP developer community. With dozens of features such as helper functions, custom UI components, animations and app services, the UWP Community toolkit is a great time saver and can bring your application to the next level.

Please, Log in or Register to view URLs content!


The toolkit has had 12 releases so far and is currently on v 1.4 (
Please, Log in or Register to view URLs content!
). It has more than 80 contributors, with thousands of commits, and the community is constantly working on improvements. Conveniently, it’s broken up into
Please, Log in or Register to view URLs content!
so you can pick and choose exactly what you need.

Examples of this toolkit’s power can be found in the Services namespace, where you can easily interact with social media services with as little as two lines of code.

Please, Log in or Register to view URLs content!


Here’s an example of getting a Twitter user’s timeline:



TwitterService.Instance.Initialize("consumer-key", "consumer-secret", "callback-uri");
ListView.ItemsSource = await TwitterService.Instance.GetUserTimeLineAsync("user-screenname", 50);



You can find a full demo application
Please, Log in or Register to view URLs content!
or
Please, Log in or Register to view URLs content!
. Go
Please, Log in or Register to view URLs content!
(controls, helpers, etc.) and
Please, Log in or Register to view URLs content!
.

Telerik UI for UWP


Telerik UI for UWP, from Progress Software, is
Please, Log in or Register to view URLs content!
that contains an amazing set of Line of Business (LOB) controls with which you can create native, business-focused, UWP applications. With controls such as
Please, Log in or Register to view URLs content!
and
Please, Log in or Register to view URLs content!
, the Telerik UI provides the powerful sorting, grouping and editing experiences you might expect from a desktop application, as well as rich data visualization experiences with controls such as
Please, Log in or Register to view URLs content!
,
Please, Log in or Register to view URLs content!
and
Please, Log in or Register to view URLs content!
.

Please, Log in or Register to view URLs content!


We recommend you check out the
Please, Log in or Register to view URLs content!
to see the DataGrid in action, as well as
Please, Log in or Register to view URLs content!
. You can see a
Please, Log in or Register to view URLs content!
and
Please, Log in or Register to view URLs content!
(if you’re looking for a little extra help, Progress Software also offers professional support in the premium package).

An example of this toolkit’s power is the RadDataGrid. With one line of code you get a bunch of out-of-the-box features like grouping, sorting and filtering.

Please, Log in or Register to view URLs content!


You can install UI for UWP in your application using
Please, Log in or Register to view URLs content!
or
Please, Log in or Register to view URLs content!
directly. If you would like to read more about why Progress Software open sourced Telerik UI for UWP, we recommend you check out
Please, Log in or Register to view URLs content!
.

Contributing


If you’re a developer who likes contributing to GitHub repos and giving back to the community, or if you have ideas to make things better for other developers, both toolkits accept pull requests and each has its own contribution guidelines (
Please, Log in or Register to view URLs content!
for UWP community toolkit and
Please, Log in or Register to view URLs content!
for Telerik UI for UWP).

Wrapping up


Both toolkits complement each other. You can use them side by side in your application to bring the user a delightful, yet powerful, experience in your UWP application. With dozens of UI controls, helpers, services and more, you can get your UWP app to market faster and with more confidence than ever. We look forward to seeing your UWP Community Toolkit and UI for UWP powered applications in the Windows Store!

Resources


Please, Log in or Register to view URLs content!
 

Users who are viewing this thread

Top