WPF Datagrid didn't seem to be that handy or easy to use to me like win-form data-grid. However, that doesn't mean it's a lot hard to implement it. Though I wasn't able to dig much into this, I would like to share my gathered knowledge while basic practicing that should help you implement a simple WPF and c# #-based data-grid application easily. I will also show how to add … [Read more...] about How To Use WPF DataGrid in C#.NET
In this tutorial, we will look into a standard feature that we usually require on a desktop application, using keyboard events and hotkeys. As WPF technology is a little different from Microsoft's Windows forms technology, it might be a little confusing to use this feature in WPF, especially for beginners with WPF application development. We will also look into some c# code … [Read more...] about How To Use Hotkeys/Keyboard Events In WPF Application Using C#
The property grid in WPF helps us generate UI controls from a C# class. Although there are several projects and releases out there for this purpose, I am going to introduce one of the most popular open-source ones, hosted on CodePlex, wpg(WPF Property Grid). I am assuming that you have basic WPF knowledge. If not, please consider reading my other article about getting started … [Read more...] about WPF Property Grid (WPG) Tutorial In C#
If you are a .NET web application developer and you need to work on a desktop-based application suddenly, then you might be a little surprised to see the application presentation layer structure, the win forms and the code behind files because they aren't similar to Microsoft web application platform, Asp.net forms. Most of the form designs are created by a .Designer.cs file, … [Read more...] about Beginning With WPF Application In C#.NET