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#
In my earlier articles, I described working with Linq on an SQL server database, which is usually known as 'Linq To SQL'. Today I am going to show how linq can be applied on XML data along with c# code examples. This is known as 'Linq To XML.'I am assuming you are already familiar with basic Linq usage. If not, my suggestion will be to study the basics of Linq first. Here, in … [Read more...] about Apply LinQ To XML Data Using C#
In this tutorial, my goal is to assist you through the development of a very simple web application that utilizes the Asp.net MVC framework(more specifically, version 3.0), LINQ to SQL, and Razor template engine so that you can have a complete idea of developing a database-driven application with these technologies. We will be using Asp.NET MVC 3 and .NET Framework 4 for this … [Read more...] about Asp.NET MVC3 And LinQ Based Sample Web Application
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#
The MVC(Model/View/Controller) design pattern became a very popular and reliable software development methodology. To apply this effectively to web applications, Microsoft released a new framework based on the MVC design pattern for web application developments, named Asp.NET MVC. The latest version of asp.net mvc is 3.0. On the way, there were a lot of improvements. Now, it is … [Read more...] about Beginning Asp.net MVC 3 And Razor With C# Code Examples