情况就是这样:
我有一个在我的应用程序中实现HTTP服务器的类,所以我可以接受请求。此服务器的目标是使用发送到应用程序的XML刷新图形。
我编写的XML解析器使用我制作的UserControl,称为NewMeshNode,它具有一些属性和一对附加在同一对象中的图像。当解析器到达创建新的NewMeshNode对象时,问题就出现了。
由于NewMeshNode对象具有图形部分,我使用委托并将http服务器线程单元状态更改为STA。
这里我初始化本地http服务器:
App.localHttpServer = new MyHttpServer(8080); App.localHttpServerThread = new Thread(new ThreadStart(App.localHttpServer.listen)); App.localHttpServerThread.SetApartmentState(ApartmentState.STA); App.localHttpServerThread.Name = "HttpServerThread"; App.localHttpServerThread.Start();
这就是我要求解析器使用我收到的XML创建列表的方法:
public delegate ArrayList delListString(string s); . . . delListString del = new delListString(App.parser.GetParameters); App.nodeInfo = (ArrayList)Dispatcher.CurrentDispatcher.Invoke(del, tokens[0]);
这是解析器的一部分,我在其中创建一个新的NewMeshNode对象来使用它:
public ArrayList GetParameters(string xml) { ArrayList parameters=new ArrayList(); int sensorCount = 0; MemoryStream ms = new MemoryStream(); ms.Write(Encoding.UTF8.GetBytes(xml), 0, Encoding.UTF8.GetBytes(xml).Length); ms.Position = 0; byte[] byteArray = ms.ToArray(); string resul = Encoding.UTF8.GetString(byteArray); resul = resul.Substring(resul.IndexOf("\n") + 1); byteArray = Encoding.UTF8.GetBytes(resul); MemoryStream rms = new MemoryStream(byteArray); XmlReaderSettings settings = new XmlReaderSettings(); settings.IgnoreComments=true; settings.IgnoreWhitespace=true; XmlReader xmlr = XmlReader.Create(rms, settings); xmlr.Read(); string xmlType = xmlr.Name; string currentElement=""; string secondaryElement = ""; NewMeshNode node = new NewMeshNode(); . . .
这是NewMeshNode类:
public partial class NewMeshNode:UserControl {
public string name = ""; public string mac = ""; public string address = ""; public string state = ""; public string type = ""; public int pipeLive = 0; public double xOnGraph = 0.0; public double yOnGraph = 0.0; public string pointsTo = ""; public ArrayList sensors = new ArrayList(); public ArrayList oldAddress = new ArrayList(); public NewMeshNode() { InitializeComponent(); } }
当debuger进入构造函数时,VS总是抛出InvalidOperation异常,并显示消息:“调用线程必须是STA,因为许多UI组件都需要这个。”
我做错了什么?
提前致谢!
答案 0 :(得分:1)
由于主要原因是自我解释,线程应该是STA并且设置它不能解决你的问题,所以你可以尝试本文中提到的一些技巧..像清洁构建你的解决方案,visual studio设置等。 http://social.msdn.microsoft.com/Forums/vstudio/en-US/d1e17dc5-ea88-453b-b87f-7154e6c6c75a/the-calling-thread-must-be-sta-because-many-ui-components-require-this