What is the NumericUpDown control? System.Windows.Forms.NumericUpDown is a control that lets the user input a number, or use up/down buttons to change a number that’s currently entered. It hides the Text property it inherits from Control, showing a decimal Value property instead. Why is the Text property hidden? At any given time, the text…
Gotchas For Working With Windows Forms/WPF Interop
As a dev who worked on Windows Forms/WPF interop (FKA Crossbow), I compiled a list of some of the issues you might hit when working with Windows Forms and WPF together. It’s not a complete list, but it’s a start. Some of the issues are rough edges where the two technologies just don’t come together smoothly. …