WPF页面后台加载...如何?
我有一个带有选项卡控件的 WPF 窗口。选项卡控件的每个 tabitem 都有一个以 PAGE 作为内容的框架...就像这样:
<TabItem Name="Tab01">
<Frame Name="Tab01Frame" />
</TabItem>
MyPage Tab01Page = New MyPage()
Tab01Frame.Navigate(Tab01Page)
现在,我遇到了这个问题。 tabitem 的每个页面都在窗口构造函数上加载,这会导致窗口的性能瓶颈。需要几秒钟才能显示。
有没有办法在后台进程加载页面?
I have a WPF Window with tab control. Every tabitem of tab control have a frame with PAGE as content...like this:
<TabItem Name="Tab01">
<Frame Name="Tab01Frame" />
</TabItem>
MyPage Tab01Page = New MyPage()
Tab01Frame.Navigate(Tab01Page)
Now, I have this problem. Every page for tabitem is loading on window contructor and this cause a performance bottleneck for window. It takes some seconds to show.
Is there a way to load pages on background process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,将初始化代码移至 Loaded 事件(而不是在构造函数中)。这将使 UI 显得响应更快。另外,使用 Dispatcher 对象将任务置于后台。
这些只是第一步。有关更好的示例,请参阅以下 MSDN 文章:
http://msdn.microsoft.com/en-us/magazine/cc163328.aspx
To start, move the initialization code to the Loaded event (not in the constructor). This will make the UI appear more responsive. Also, use the Dispatcher object to background the task.
Those are just first steps. For a better example see the following MSDN article:
http://msdn.microsoft.com/en-us/magazine/cc163328.aspx