Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有图表的选项卡控件。
如何访问 tabitem 上的图表以为其提供数据源?
只需在图表上使用绑定还将RelativeSource Ancestor 设置为您的DataContext
首先,将using System.Windows.Controls.Primitives;和添加using System.Linq;到您的使用部分。
using System.Windows.Controls.Primitives;
using System.Linq;
之后,您可以获得图表(如果这是类名),如下所示:
Chart myChart = tab.GetVisualDescendants().OfType<Chart>().FirstOrDefault();