Introduction On my developer work, there are some tools that make my job much easier and I use them on a daily basis and miss them when I go to a computer…
Category: English
Posts in English/Posts em inglês
Alternate Data Streams in C#
I’m sure that you have had this scenario at least once: you download a file from the internet and try to run it and it doesn’t work fine. If it is a…
Working with Sensors in UWP–Part 5–Geolocation
This last part in the series will show a different kind of sensor – the Geolocation sensor. In the strict sense, we can’t call this as a sensor, because the geolocation service…
Working with Sensors in UWP–Part 4–Accelerometer
In the previous posts (Light sensor, Compass and Inclinometer), I’ve shown how to use some sensors in a UWP app. In this post, I’ll show how to use another sensor, the accelerometer….
Working with Sensors in UWP–Part 3–Inclinometer
In the previous two posts (Light sensor and Compass), I’ve shown how to use the sensors in a UWP app. Working with them is very easy and it can enhance the usability…
Working with Sensors in UWP–Part 2–Compass
In the last post, I have shown how to use the light sensor to get light data and offer a better experience for the user. In this post, I will show another…
Working with Sensors in UWP–Part 1–Light Sensor
Some time ago, computer makers introduced new classes of Windows devices: the 2-in-1 and the tablets. These kinds of computers bring a lot of innovation – the 2-in-1 computers can be used…
Loading XAML Dynamically – Part 2 – Loading Styles Dynamically
In the last post, I showed how to load a complete view dynamically, but that’s not the most common way to change the visualization of data. Most of the time, you will…
Loading XAML Dynamically – Part 1 – Loading Views Dynamically
Most of the time, our design is fixed and we don’t have to change it while it’s executing, but sometimes this is not true: we need to load the files dynamically, due…
Analyzing Disk Space with C# Reviewed
After some time, I needed to analyze the disk space of my C: drive and used the program I have developed in my previous post and I got an “UnauthorizedAccessException”. After some…