我有一个面板,我在代码中构建并使用用户控件填充它。当它完成填充时,我向主 GUI 提出一个事件,告诉它填充完成并传递堆栈面板。
然后我想将此面板添加到容器网格中。
我努力了
grdPbContent.Dispatcher.Invoke(
DispatcherPriority.Normal,
new Action<StackPanel>(
delegate(StackPanel _sp)
{
grdPbContent.Children.Add(_sp);
}
),
sp);`
还有空委托选项,但总是从TargetOfInvocation
我究竟做错了什么?