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…
Tag: WPF
Analyzing Disk Space with WPF
Some time ago, I’ve written an article about analyzing disk space using Excel and Powershell. While these tools are very easy to use and very flexible, that requires some organization: you must…
Data structures in C# – Part 4 – Trees
Posts in this Series: Linked Lists Stacks Queues Trees (this post) To conclude the data structures shown in this series, we will show the tree. The tree will store organized data –…
Data structures in C# – Part 3 – Queues
Posts in this Series: Linked Lists Stacks Queues (this post) Trees In the last post, I’ve talked about stacks, a LIFO (Last In – First out) data structure. In this post, I…
Data structures in C# – Part 2 – Stacks
Posts in this Series: Linked Lists Stacks (this post) Queues Trees In the last post I’ve talked about one of the most basic data structures, the linked list. In this post we…
Data structures in C# – Part 1 – Linked lists
Posts in this Series: Linked Lists (this post) Stacks Queues Trees Although we use data structures daily in our programs, sometimes we forget the theory behind them. So, I decided to create…
Ferramentas de Debugging de UI no Visual Studio 2015
O Visual Studio 2015 introduziu novas ferramentas de debugging de UI para as aplicações WPF, Windows 8.1 ou Windows 10: a Live Visual Tree e o Live Property Explorer. Com estas duas…
Restructuring your legacy code using MVVM and Dependency Injection with Unity
Introduction In the previous article, "Testing the untestable with Fakes", I have shown how to create unit tests for the legacy code that didn’t allow tests. With these tests in place we…
Animating transitions in WPF/Silverlight–Part IV–Behaviors
On the last post, I’ve shown how we can animate transitions using Blend and Visual States. An important part in that mechanism is the use of behaviors. With behaviors, we can execute…
Animating transitions in WPF/Silverlight–Part III–Visual States
On the two last posts, I’ve showed how to animate a transition using code. The first post showed how to animate the transition using code behind, creating the animation using code. The…