EnglishFrenchGermanItalianPortugueseRussianSpanish

WPF through the C# command line compiler csc.exe

I don’t have the Visual Studio 2008 IDE at work. To get around that I write WPF entirely though code in Notepad and compile it with the command line compiler installed with the Framework. Painful, yeah, but it makes for much better learning. The IDE makes things much easier through intellisense, code generation which makes [...]

Nested Controls in WPF

Unlike conventional windows Forms applications, WPF supports Nested controls. i.e. one control can reside inside other controls, something that is not possible in Windows Forms where all the controls belong to one container. Lets see how this is Possible. Many controls in WPF has a content property. The Content property is what the control displays. [...]

Visual Studio Express 2010 IDE

Around a week back, the Visual Studio 2010 express editions beta2 versions were up for download. I immediately downloaded it and got my hands dirty trying to adjust to the new IDE. Here are some snapshots of the Visual Studio 2010 C# express edition and how it differs from its predessecor.

First the splash screen, [...]