WPF页面后台加载...如何?

发布于 2024-12-02 21:04:04 字数 402 浏览 1 评论 0原文

我有一个带有选项卡控件的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

星星的轨迹 2024-12-09 21:04:04

首先,将初始化代码移至 Loaded 事件(而不是在构造函数中)。这将使 UI 显得响应更快。另外,使用 Dispatcher 对象将任务置于后台。

 private delegate void DelegateTypeYouDeclare();

 this.Dispatcher.BeginInvoke(new DelegateTypeYouDeclare(MethodToCall), null);

这些只是第一步。有关更好的示例,请参阅以下 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.

 private delegate void DelegateTypeYouDeclare();

 this.Dispatcher.BeginInvoke(new DelegateTypeYouDeclare(MethodToCall), null);

Those are just first steps. For a better example see the following MSDN article:
http://msdn.microsoft.com/en-us/magazine/cc163328.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文