WPF TabControl - 基于可见性的显示计算启用

发布于 2024-09-14 15:45:32 字数 144 浏览 2 评论 0原文

假设我有一个基于选项卡的界面,例如 Internet Explorer。 在每个选项卡页中,可能会发生 CPU 密集型的事情(例如显示波形以及计算和显示实时 FFT),这些事情仅与实时统计相关 - 因此仅当它对用户实际可见时。

解决这个问题的最佳方法是什么?

Suppose I have a tab-based interface like Internet Explorer.
In each tabpage cpu-intensive stuff can happen (f.e. displaying a waveform and calculating and displaying a realtime FFT) that is only relevant as realtime statistic - so only when it's actuallty visible to the user.

What's the best way to approach this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

如歌彻婉言 2024-09-21 15:45:32

您可以订阅 TabControl 的 PropertyChanged 事件(使用 SelectedIndex 属性)来检测显示哪个选项卡。

You can subscribe to the PropertyChanged event of the TabControl (with SelectedIndex property) to detect which tab is displayed.

-柠檬树下少年和吉他 2024-09-21 15:45:32

我不确定 WPF 中是否有类似的控件,但我认为想法是相同的。

在 Silverlight 中,有一个导航窗格控件,它仅显示从选项卡控件中选择的页面。这样仅显示相关数据。

I'm not sure there is a similar control in WPF but I think the thought is the same.

In Silverlight there is a Navigation Pane control which shows only the page which is selected from the tabcontrol. This way only relevant data is shown.

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