C#, difference between System.Window.Controls and System.Windows.Forms?
Posted
by 5YrsLaterDBA
on Stack Overflow
See other posts from Stack Overflow
or by 5YrsLaterDBA
Published on 2010-06-07T14:30:20Z
Indexed on
2010/06/07
14:32 UTC
Read the original article
Hit count: 171
c#
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?
© Stack Overflow or respective owner