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?
System.Windows.Formsis WinForms and uses code to lay out controls,System.Windows.Controlsis WPF and uses XML (XAML specifically) to lay out controls.The two are NOT made to work together. Additionally, WPF only exists in .NET 3.0 and newer.
Or were you looking for more than that?