Silverlight性能测试
有人可以推荐我一个工具或方法来测量 Internet Explorer 对象内部 silverlight 对象的性能吗?
一个大概的测试场景是
“Start Timer”;打开页面,等待 silverlight 对象引发事件(例如 OnDisplayed());停止计时器;
或
启动计时器;打开页面,等待silverlight对象完全显示;停止计时器;
我可以通过 C# 程序执行此操作吗?或者使用某种工具更容易做到这一点?
谢谢!
Can anybody recommend me a tool or an approach to measure the performance of silverlight object inside of Internet Explorer object?
An approximate test scenario is
Start Timer; Open the page, Wait until the silverlight object raise an event (for ex. OnDisplayed()); Stop Timer;
OR
Start Timer; Open the page, Wait until the silverlight object will be displayed completely; Stop Timer;
Can I do this from C# program? Or it is easier to do this with some tool?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以更改 silverlight 应用程序的加载页面并在加载开始时启动计时器。加载完成后,您可以停止计时器并显示结果。
这里是更改加载的代码页。
You can change loading page for your silverlight application and start timer when loading started. When loading finished you can stop timer and show result.
Here is code for changing loading page.