Tag Archives: windev

Feedback Hub for everybody!

On August 29th, the Windows Dev Center got a massive feature set upgrade. Included among these new features was the announcement of the Microsoft Store Services Engagement Framework. Like the name implies, this is a new framework put out by the Store team enabling developers to better engage with their users – and new store… Read More »

Continuous Mobile Deployment with VSTS – Part 2

In my last post we talked about setting up CI & CD for your Xamarin.Android project. Let’s continue on with our cross-platform story today by targeting Windows 10.

Your UWP Push Notifications are now Toast

I recently pushed an update to the UWP I’ve published to the store at work. After installing the app on my 10581 Windows 10 device and using it all weekend, I was dismayed to see when I received a push notification the app didn’t do what it was supposed to do. I dove in.

My first exception caused solely by .Net Native

In a current project we’re developing a UWP application which, as you may or may not know, *requires* you to compile to .Net Native in order to submit to the store. No biggie, that hasn’t been a problem. Until now.

Can’t deploy to Windows 10 Mobile 10581? Read this

I’ve been doing Windows 10 UWP development since July. During that time I’ve upgraded from the latest slow-ring builds of Windows 10 all the way up to 10565 on my work desktop. Also during this time, I’ve updated our test bench devices with the latest Windows 10 Mobile fast-ring builds so we weren’t surprised at… Read More »

Pull-to-refresh on a Windows 10 UWP

If you’ve ever tried to pull this off, you’ve likely either A) pulled your hair out then drank ruthlessly in celebration or B) researched what it takes and said “yeah… looks like we’re going with a button” I was the same way.

Static Grid, Dynamic Content – Part 2: The Stragglers

In my previous post I talked about how to get a dynamic set of content chunked up in to batches that could then be displayed in a static grid, stacked within an items control. This works great if your dataset is evenly divisible by the number of items in your grid, but what if it’s… Read More »

Static Grid, Dynamic Content

On a recent project, we wanted to lay out some dynamic content in a very specific way, and have that repeat a la the USA Today app for Windows 10. The main challenge facing us when doing this is that Grid isn’t an ‘ItemsControl’ and therefore can’t be bound to a collection of data. So… Read More »