标签: wpf rendering
有没有办法确定UserControl渲染的开始和结束?我知道有一个Windows.ContentRendered事件,也是这个hack:
Dispatcher.BeginInvoke(DispatcherPriority.ContextIdle, new Action(() => { // do something here }));
但是我需要知道UserControl渲染需要多长时间,而不是整个Window。