我尝试在 LinaPad 上打开一个包含我的 WPF 用户控件的 WPF 窗口。
var w = new System.Windows.Window() { Content = myControl };
w.ShowDialog();
此代码仅适用于打开查询选项卡后的第一次执行。如果我再次执行代码,那么它会抛出 InvalidOperationException 说
Cannot use a DependencyObject that belongs to a different thread than its parent Freezable
LinqPad中第一次执行环境和后期执行环境有什么区别吗?