我已经看到了一些如何使用 winforms 执行此操作的示例,但由于 wpf TabItem 没有控件的定义,因此无法使其在 wpf 中工作。这是我现在正在使用的代码,它不起作用。
TabItem ti = rep1Tab;
var controls = ti.Controls;
foreach (var control in controls)
{
//do stuff
}