WPF TabControl - 基于可见性的显示计算启用
假设我有一个基于选项卡的界面,例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以订阅 TabControl 的 PropertyChanged 事件(使用 SelectedIndex 属性)来检测显示哪个选项卡。
You can subscribe to the PropertyChanged event of the TabControl (with SelectedIndex property) to detect which tab is displayed.
我不确定 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.