The System.ComponentModel namespace (more information here ) in .Net contains an array of various attributes that every .Net developer should know about. These attributes provide a way for the developer to implement design-time and run-time behavior on both controls and components. In addition...
Today I was working with a WPF project and when I went to run the application I got the following error 'Cannot locate resource 'FileName.xaml'. Note, this is NOT a compiler error, this is a runtime error. When I opened up the App.xaml file, the StartupUri appeared to be correct, but I would still get...
Not sure how many of you have needed to use the Microsoft.Ink SDK, but I am currently learning how to use the SDK on my current project. I have to say, that the reconizition that they provide is really, really good. The Ink SDK comes with a TextBox and a PictureBox, but I only need the Text Box, so that...
So one of the nice new feature in .net 2.0 is the enhanced support for binding business objects to UI controls. This is very nice because it will allow you to write a single line of code that allows the business object and the UI control (text box) to exchange data both upstream and downstream. Setting...