Welcome to WindowsClient.net | My Blog | Sign in | Join

Articles

Sponsors





  • advertise here

September 2009 - Posts

XAML in WPF
Article about the introduction to XAML in WPF.
Multiple Document Interface (MDI) Form
This article describes sample usage of MDI form.
Developing the Login Box In the Most Simplest Way!
The article explains how to implement a Login Functionality in WPF. The credentials are checked from the database.
Using the FileSystem Watcher Class in Winforms
The article explains the usage of FileSystemWatcher class in WinForms for logging deleting, renaming, and modifications of files.
Working with the FlowLayout Panel
This article will explain how to work with the FlowLayoutPanel control which is new in the DotNet Framework 2.0
Runtime Adding and Removing of Controls in Winforms

This article demontrates how to add controls during runtime and how to remove them and also how to get values out of an rutime ceated cntrol.  It also demonstrates how to write event handlers for runtime created controls.

Introduction to XAML Browser Applications (XBAP)
This article gives an introduction to XBAPs and provides information about the differences between WPF Standalone applications, Silverlight, and XBAPs. Nihar explains the steps used to create a sample XBAP application and how to deploy and run it.
WPF Animations Part I- Color Animation

WPF is a new framework that has many advanced capabilities. Animations are one of those capabilities, where an object can be animated via rotating, stretching, scaling, moving it across the screen, changing its color, etc. In this article I am going to show Color Animation.

Using LINQ to Find the Sum of a MultiDimensional Array
Here’s how to use LINQ to find the sum of a multidimensional array which has 3 rows and 2 columns.
Hello World in WPF 3.5

Technology is growing, everyday you will hear that there is a new version of something and you will wonder if we will ever stop learning. If you are a Microsoft developer you will always buy books because almost every three or two years they bring something and when you are still busy trying to master the current technology, they introduce something new that is better than this. The gap between .net 2.0 and 3.5 was enough to allow developers to catch up. Well I got affected by that but I kept on touching the chapters of those technologies. I was impressed by all these niceties but I could not have time to explore them all. I came across a WPF and I was impressed by the UI, even if you create a small hello world. I would like to share a small hello world about WPF.

Using LINQ to Search and Delete Old Files
Another LINQ usage to search and delete old files.
WPF Toolkit DataGrid Part IV: TemplateColumns and Row Grouping
This post is part of the WPF Toolkit DataGrid series. In this part we will have a look into more advanced concepts. First we will see how we can use the DataGridTemplateColumn to imitate the behavior of a DataGridComboBoxColumn and to show a small chart representing the age deviation from average for each player. We will then have a look on how we can group rows on our DataGrid using two separate methodologies.
WPF 3.5 New Data Validation Feature
Typically when you perform data binding in WPF, it is necessary for you to think of data entry validations. With WPF 3.5, new data validation support is provided for validating user entries. 'IDataErrorInfo', the interface provided to offer custom error information.
Creating Master Details Application using WPF 3.5 and LINQ to XML
In this article we will see how to create a Master Details application using WPF 3.5 and LINQ To XML and how WPF makes use of LINQ to XML.