Introdução O Office 2007 trouxe mudanças significativas para esta suíte de aplicativos: a mais visível foi o Ribbon, uma nova interface de usuário que facilita muito o uso dos aplicativos. Outra mudança,…
Category: Windows
Using the WebView2 in a Delphi app
In the last post I’ve shown how to use the new WebView2 control in a WPF app and said that it could be used in any Windows version and in any platform….
Using the new WebView2 in a WPF app
Times have changed and Microsoft is not the same: Edge, the new Microsoft browser has been remodeled and now it’s using the Chromium engine, an open source browser engine developed by Google….
Implementing the MVVM pattern in a WPF app with the MVVM Community toolkit
Introduction You have an old, legacy app (with no tests), and its age is starting to show – it’s using an old version of the .NET Framework, it’s difficult to maintain and…
Converting XML data to JSON
There are times when you need to convert data from one format to the other and you don’t have any tools to do it, or you must do it so many times…
Mocking non-virtual methods of a class with Microsoft Fakes
After I finished last article, I started to think that there should be another way to test the non-virtual methods of a class. And, as a matter of fact, there is another…
Discover what is consuming your disk with NTFS structures
Introduction Some time ago, I wrote this post with this accompanying source code. It showed the way to use NTFS file structures to enumerate files and show the files that take more…
Missed features in Windows 10 – Task View and Multiple Desktops
Sometimes, you, even being a power user of Windows, can miss some things that can make your life easier. You get used to a routine and then, new features come and unfortunately,…
Parsing the command line for your application with System.CommandLine
A very common issue when dealing with console applications is to parse the command line. I am a huge fan of command line applications, especially when I want to add an operation…
Learning and documenting .NET with dotnet try
Introduction Learning a new programming language is always hard. You have to read the documentation, stop, go to the IDE of your choice, start a new project, compile and run the program…