- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
3小时前关门了。
Improve this question
我正在处理一个项目,需要在WPF C#用户控件完全加载后立即开始处理。当前我使用的是Loaded事件,但我需要一个在此事件之后触发的事件,因为在处理此事件期间,用户控件在屏幕上尚不可见。
1条答案
按热度按时间n7taea2i1#
正如我所看到的,您需要一个类似
ContentRendered
的事件,但是它并不存在于您的UserControl
中,但是为什么不为它创建一个PresentationSource
呢?如果需要,也可以将
ContentRendered
处理程序设置为public
。