WPF datagrid didn't seem to be that much handy or easy to use to me as like win-form data-grid. However, that doesn't mean it's a lot hard to implement it. Though I didn't able to dig much into this, I will 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
wpf
How To Use Hotkeys/Keyboard Events In WPF Application Using C#
In this tutorial, we will look into a common 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 look into some c# code examples … [Read more...] about How To Use Hotkeys/Keyboard Events In WPF Application Using C#
WPF Property Grid (WPG) Tutorial In C#
Property grid in WPF helps us in generating 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 once, hosted on codeplex, wpg(WPF Property Grid). I am assuming that, you have basic wpf knowledge. If no, please consider reading my another article about getting … [Read more...] about WPF Property Grid (WPG) Tutorial In C#
Beginning With WPF Application In C#.NET
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