是否可以從NUnit(或類似的)測試我的WPF UserControls?如果我在一個單元測試創建用戶控件的實例,像這樣:單元測試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"
我得到我想的東西在這裏非常重要的感覺。