C#, difference between System.Window.Controls and System.Windows.Forms?
- by 5YrsLaterDBA
Don't know the difference between the System.Window.Controls.TextBox and System.Windows.Forms.TextBox. Noticed that the System.Windows.Forms.TextBox can have InvokeRequried but System.Window.Controls.TextBox cannot.
what's the counterpart of InvokeRequired for System.Window.Controls.TextBox?
looks like if we have both using System.Window.Controls; and using System.Window.Forms; the code may conflict each other?