Tutorial by Examples

A quick read of most developer sites will reveal that WinForms is considered inferior to WPF. One of the most often cited reasons is the supposed difficulty in making application wide changes to the "look-and-feel" of an entire application. In fact it is surprisingly easy to produce an a...
Often you will want to have an input box that takes numbers only. Again by deriving from the standard controls this is easily achieved, for example: using System; using System.Windows.Forms; using System.Globalization; namespace StackOverflowDocumentation { public class SONumberBox : SO...

Page 1 of 1