单元测试 WPF 用户控件
是否可以从 NUnit(或类似的)测试我的 WPF UserControls?如果我在单元测试中创建用户控件的实例,如下所示:
// Create an instance of the WPF UserControl
var view = new ChildrenListView();
我收到以下错误:
"The calling thread must be STA, because many UI components require this"
我感觉我在这里缺少一些非常重要的东西。
Is it possible to test my WPF UserControls from NUnit (or similar)? If I create an instance of the usercontrol in a unit test like so:
// Create an instance of the WPF UserControl
var view = new ChildrenListView();
I get the following error:
"The calling thread must be STA, because many UI components require this"
I get the feeling I'm missing something very important here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用[STAThread]属性。
Use the [STAThread] attribute.